SQL_SetCharset
- Синтаксис
-
native bool:SQL_SetCharset(Handle:h, const charset[]);
Переменная | Описание |
---|---|
h |
Database or connection tuple Handle. |
charset |
The character set string to change to. |
- Описание
- Sets the character set of the current connection. Like SET NAMES .. in mysql, but stays after connection problems. If a connection tuple is supplied, this should be called before SQL_Connect or SQL_ThreadQuery. Also note the change will remain until you call this function with another value. This native does nothing in SQLite. Example: "utf8", "latin1"
- Возвращает
- True, if character set was changed, false otherwise.