fixed various bugs in the sql natives and manager

added a basic test plugin

--HG--
extra : convert_revision : svn%3A39bc706e-5318-0410-9160-8a85361fbb7c/trunk%40875
This commit is contained in:
David Anderson
2007-06-01 04:22:53 +00:00
parent e334e5f7e7
commit eb54cbb4f5
5 changed files with 132 additions and 5 deletions
+10
View File
@@ -260,10 +260,20 @@ native bool:SQL_HasResultSet(Handle:query);
* Retrieves the number of rows in the last result set.
*
* @param query A query (or statement) Handle.
* @return Number of rows in the current result set.
* @error Invalid query Handle.
*/
native SQL_GetRowCount(Handle:query);
/**
* Retrieves the number of fields in the last result set.
*
* @param query A query (or statement) Handle.
* @return Number of fields in the current result set.
* @error Invalid query Handle.
*/
native SQL_GetFieldCount(Handle:query);
/**
* Retrieves the name of a field by index.
*