AMX Mod X API Documentation

Signature
native SQL_QuoteString(Handle:db, buffer[], buflen, const string[]);
Description

Back-quotes characters in a string for database querying.

Notes
  • The buffer's maximum size should be 2*strlen(string) to catch all scenarios.
Parameters
  • db Database handle for localization, or Empty_Handle

    for when a handle is not available.

  • buffer Buffer to copy to.
  • buflen Maximum size of the buffer.
  • string String to backquote (should not overlap buffer).
Returns

Length of new string, or -1 on failure.

Errors
  • Invalid database handle.
Назад
Верх