Binds a parameter in a prepared statement to a given string value.
void SQL_BindParamString(Handle statement, int param, const char[] value, bool copy)
A statement (prepared query) Handle.
The parameter index (starting from 0).
The string to bind.
Whether or not SourceMod should copy the value locally if necessary. If the string contents won't change before calling SQL_Execute(), this can be set to false for optimization.
Invalid statement Handle or parameter index, or SQL error.
This documentation was generated automatically using pawn-docgen written by xPaw for AlliedMods.