Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

maxdb_character_set_name(3) [php man page]

MAXDB_CHARACTER_SET_NAME(3)						 1					       MAXDB_CHARACTER_SET_NAME(3)

maxdb_character_set_name - Returns the default character set for the database connection

       Procedural style

SYNOPSIS
string maxdb_character_set_name (resource $link) DESCRIPTION
Object oriented style string maxdb::character_set_name (void ) Returns the current character set for the database connection specified by the $link parameter. RETURN VALUES
The default character set for the current connection, either ascii or unicode. EXAMPLES
Example #1 Object oriented style <?php /* Open a connection */ $maxdb = new maxdb("localhost", "MONA", "RED", "DEMODB"); /* check connection */ if (maxdb_connect_errno()) { printf("Connect failed: %s ", maxdb_connect_error()); exit(); } /* Print current character set */ $charset = $maxdb->character_set_name(); printf ("Current character set is %s ", $charset); $maxdb->close(); ?> Example #2 Procedural style <?php $link = maxdb_connect("localhost", "MONA", "RED", "DEMODB"); /* check connection */ if (!$link) { printf("Connect failed: %s ", maxdb_connect_error()); exit(); } /* Print current character set */ $charset = maxdb_character_set_name($link); printf ("Current character set is %s ",$charset); /* close connection */ maxdb_close($link); ?> The above example will output something similar to: Current character set is ascii SEE ALSO
maxdb_client_encoding(3), maxdb_real_escape_string(3). PHP Documentation Group MAXDB_CHARACTER_SET_NAME(3)

Check Out this Related Man Page

MAXDB_AUTOCOMMIT(3)							 1						       MAXDB_AUTOCOMMIT(3)

maxdb_autocommit - Turns on or off auto-commiting database modifications

       Procedural style

SYNOPSIS
bool maxdb_autocommit (resource $link, bool $mode) DESCRIPTION
Object oriented style bool maxdb::auto_commit (bool $mode) maxdb_autocommit(3) is used to turn on or off auto-commit mode on queries for the database connection represented by the $link resource. RETURN VALUES
Returns TRUE on success or FALSE on failure. EXAMPLES
Example #1 Object oriented style <?php $maxdb = new maxdb("localhost", "MONA", "RED", "DEMODB"); if (maxdb_connect_errno()) { printf("Connect failed: %s ", maxdb_connect_error()); exit(); } /* turn autocommit on */ $maxdb->autocommit(TRUE); /* close connection */ $maxdb->close(); ?> Example #2 Procedural style <?php $link = maxdb_connect("localhost", "MONA", "RED", "DEMODB"); if (!$link) { printf("Can't connect to localhost. Error: %s ", maxdb_connect_error()); exit(); } /* turn autocommit on */ maxdb_autocommit($link, TRUE); /* close connection */ maxdb_close($link); ?> The above example will output something similar to: SEE ALSO
maxdb_commit(3), maxdb_rollback(3). PHP Documentation Group MAXDB_AUTOCOMMIT(3)
Man Page