Scripting/Squirrel/Functions/mysql select db: Difference between revisions
Jump to navigation
Jump to search
This wiki is using an old backup from 2020
Some information may be old/missing
(Created page with "Changes the current default database. == Syntax == <pre>mysql_select_db( MySQLConnection handler, string database )</pre> == Arguments == * ''MySQLConnection'' '''handler'''...") |
m (Do not sign your edits) |
||
Line 16: | Line 16: | ||
else mysql_select_db(c,"database"); | else mysql_select_db(c,"database"); | ||
</pre> | </pre> | ||
Revision as of 03:37, 10 March 2016
Changes the current default database.
Syntax
mysql_select_db( MySQLConnection handler, string database )
Arguments
- MySQLConnection handler - A valid MySQL link/handler
- String database - The new database's name
Return value
true on success and/or false on failure.
Example
local c = mysql_connect("localhost","root","password","db2"); if( c ) return 1; else mysql_select_db(c,"database");