AMX Mod X API Documentation

Signature
native bool:SQL_SetCharset(Handle:h, const charset[]);
Description

Sets the character set of the current connection.

Like SET NAMES .. in mysql, but stays after connection problems.

Notes
  • If a connection tuple is supplied, this should be called before SQL_Connect or SQL_ThreadQuery.
  • The change will remain until you call this function with another value.
  • This native does nothing in SQLite.
  • Example: "utf8", "latin1"
Parameters
  • h Database or connection tuple Handle.
  • charset The character set string to change to.
Returns

True, if character set was changed, false otherwise.

Назад
Верх