amxmodx/plugins/include/mysql.inc

43 lines
1.3 KiB
PHP
Raw Normal View History

2004-01-31 23:56:22 +03:00
/* MySQL functions
2004-02-08 14:31:54 +03:00
*
* by the AMX Mod X Development Team
* originally developed by OLO
2004-02-08 14:31:54 +03:00
*
* This file is provided as is (no warranties).
*/
2004-01-31 23:56:22 +03:00
#if defined _mysql_included
#endinput
#endif
#define _mysql_included
2004-04-03 03:45:26 +04:00
#include <dbi>
2004-01-31 23:56:22 +03:00
/* Opens connection. If already such exists then that will be used.
* Function returns sql id to use with other sql natives.
* Host can be plain ip or with port seperated with ':' char. */
2004-04-03 03:45:26 +04:00
stock mysql_connect(host[],user[],pass[],dbname[],error[],maxlength)
{
2004-06-29 20:15:24 +04:00
return dbi_connect(host, user, pass, dbname, error, maxlength)
2004-04-03 03:45:26 +04:00
}
2004-01-31 23:56:22 +03:00
/* Uses an existing connection (sql) to perform a new query (query) (might close previous query if any). */
2004-06-24 12:37:34 +04:00
native mysql_query(sql,query[]);
2004-01-31 23:56:22 +03:00
/* Prepares next row of current query (sql) for read access ; returns the number of the row, 0 at end. */
2004-06-24 12:37:34 +04:00
native mysql_nextrow(sql);
2004-01-31 23:56:22 +03:00
/* Stores specified column (fieldnum) of current query (sql) in (dest) with (maxlength) characters maximum. */
2004-06-24 12:37:34 +04:00
native mysql_getfield(sql,fieldnum,dest[],maxlength);
2004-01-31 23:56:22 +03:00
/* Clears query (sql) and closes connection (if any other plugin doesn't use it). */
2004-04-03 03:45:26 +04:00
stock mysql_close(sql)
{
2004-06-29 20:15:24 +04:00
return dbi_close(sql)
2004-04-03 03:45:26 +04:00
}
2004-01-31 23:56:22 +03:00
/* Stores last error of current query/connection (sql) in (dest) with (maxlength) characters maximum. */
2004-04-03 03:45:26 +04:00
stock mysql_error(sql,dest[],maxlength)
{
2004-06-29 20:15:24 +04:00
return dbi_error(sql, dest, maxlength)
2004-04-03 03:45:26 +04:00
}