Scripting/Squirrel/Functions/mysql warning count

From Vice City Multiplayer
Revision as of 19:42, 4 March 2016 by KAKAN (talk | contribs) (Created page with "Returns the last query number of warnings == Syntax == <pre>mysql_warning_count( MySQLConnection handler )</pre> == Arguments == * ''MySQLConnection'' '''handler''' - A vali...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search
Caution icon
This wiki is using an old backup from 2020
Some information may be old/missing

Returns the last query number of warnings

Syntax

mysql_warning_count( MySQLConnection handler )

Arguments

  • MySQLConnection handler - A valid MySQL link/connection

Return value

An integer showing the number of warning of the last query

Example

mysql_query(handler,"SELECT FROM shit");
print( mysql_warning_count( handler ) );

By KAKAN