php man page for maxdb_character_set_name

Query: maxdb_character_set_name

OS: php

Section: 3

Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar

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)
Related Man Pages
maxdb_get_server_info(3) - php
maxdb_errno(3) - php
maxdb_get_proto_info(3) - php
maxdb_get_server_version(3) - php
maxdb_kill(3) - php
Similar Topics in the Unix Linux Community
onPHP 1.0.1 (Current branch)
onPHP 1.0.4 (Current branch)
onPHP 1.0.5 (Current branch)
onPHP 1.0.7 (Current branch)
onPHP 1.0.8 (Current branch)