mirror of
https://github.com/polserver/polserver
synced 2026-08-13 08:23:08 -04:00
12 lines
335 B
Text
12 lines
335 B
Text
//
|
|
// SQL related functions
|
|
//
|
|
mysql_connect(host,username,password := "");
|
|
mysql_query(connection,query,parameters := array{});
|
|
mysql_fetch_row(result);
|
|
mysql_affected_rows(result);
|
|
mysql_num_fields(result);
|
|
mysql_num_rows(result);
|
|
mysql_select_db(connection,database);
|
|
mysql_field_name(result,column_index);
|
|
mysql_close(connection);
|