sqlite_bind_null

mIRC SQLite

sqlite_bind_null
Binds null as a parameter for prepared statement.
Syntax
$sqlite_bind_null ( statement, param )
/sqlite_bind_null statement param
Parameters
statement
The prepared statement identifier.
param
The parameter to bind to. Must exist in the prepared query.
Return Value
1 on success, or $null if there was an error.
Remarks
The param parameter can either be a numerical index, specified with a ? in the query, or a named parameter specified with a :name in the query. If binding a named parameter, you should also include the colon in the name.

For more information about parameter binding, see Prepared Statements.