Рекурсивный акроним словосочетания «PHP: Hypertext Preprocessor»
Добро пожаловать на форум PHP программистов!
За последние 24 часа нас посетили 16419 программистов и 1796 роботов. Сейчас ищут 2009 программистов ...
ingres_charset - Returns the installation character set
Вернуться к: Ingres Функции
ingres_charset
(PECL ingres >= 2.1.0)
ingres_charset — Returns the installation character set
Описание
string ingres_charset
( resource
$link
)ingres_charset() is called to determine the character set being used by the Ingres client, from II_CHARSETxx (where xx is the installation code).
Замечание:
You can override the value returned by using the function putenv(). Changing the value of II_CHARSETxx in a running Ingres installation can cause data corruption.
Список параметров
-
link
-
The connection link identifier
Возвращаемые значения
Returns a string with the value for II_CHARSETxx or returns NULL if the value could not be determined.
Примеры
Пример #1 ingres_charset() - Get the installation character set
<?php
$link = ingres_connect($database, $user, $password);
echo ingres_charset($link) . "\n";
ingres_close($link);
?>
Смотрите также
- ingres_connect() - Open a connection to an Ingres database
- ingres_query() - Send an SQL query to Ingres
Вернуться к: Ingres Функции