|
Последние активные темы форума |
|
maxdb_character_set_name
(no version information, might be only in CVS) maxdb_character_set_name -- Returns the default character set for the database connection
DescriptionПроцедурный стиль: string maxdb_character_set_name ( resource link ) Returns the current character set for the database connection specified by the
link parameter.
Return valuesThe default character set for the current connection, either ascii or unicode.
Example
Пример 1. Процедурный стиль
<?php
$link
=
maxdb_connect
(
"localhost"
,
"MONA"
,
"RED"
);
/* check connection */
if (!
$link
) {
printf
(
"Connect failed: %s\n"
,
maxdb_connect_error
());
exit();
}
/* Print current character set */
$charset
=
maxdb_character_set_name
(
$link
);
printf
(
"Current character set is %s\n"
,
$charset
);
/* close connection */
maxdb_close
(
$link
);
?>
|
|
The above examples would be produce the following output:
Current character set is ascii |
|