Scripting/Squirrel/Functions/mysql query: Difference between revisions

From Vice City Multiplayer
Jump to navigation Jump to search
Caution icon
This wiki is using an old backup from 2020
Some information may be old/missing
(Created page with "This function will execute a query from the MySQL database. == Syntax == <pre>mysql_query( database, query);</pre> == Arguments == * ''string'' '''database''' - The databa...")
 
No edit summary
Line 7: Line 7:
== Arguments ==
== Arguments ==


* ''string'' '''database''' - The database on which the query shall be executed.
* '''database''' - The database on which the query shall be executed.
* ''string'' '''query''' - The query to be executed.
* '''query''' - The query to be executed.
== Example ==
== Example ==



Revision as of 11:11, 28 September 2015

This function will execute a query from the MySQL database.

Syntax

mysql_query( database, query);

Arguments

  • database - The database on which the query shall be executed.
  • query - The query to be executed.

Example

function onPlayerCommand(player, command, arguments)
{
if (command=="resetcash")
{
mysql_query( vcmpdb, "UPDATE accounts SET cash = '0' WHERE name = '"+player.Name+"'");
}
}


Notes

You can also use this function to SELECT, DELETE, INSERT etc.