Modules/MySQL/MysqlOpen

From Multi Theft Auto: Wiki
Revision as of 00:00, 12 April 2006 by IJs (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Description

This function opens a MySQL connection to a specific database on a database server. As soon as a connection is made (or timed out), the callback_function you passed as parameter is called and you can (hopefully) read/write to the database by using the mysqlQuery function.

This function is provided by the ml_mysql module.

Syntax

textitem mysqlOpen ( [function callback_function, string host, string user, string password, string database_name, int port] )

Required Arguments

  • callback_function : The function that is called if the operation is done (please see below)
  • host : The database server hostname or IP address to use
  • user : The database username to use
  • password : The database password to use
  • database_name : The database name to use
  • port : The database server port (MySQL default port is 3306)

Callback Arguments

Your callback function has to accept the following arguments:

  • bool result : Returns true or false whether the operation succeeded

Optional Arguments

None

Example

function onMySQLOpen ( result )
  if ( result )
    -- connection succeeded. switch some global boolean
  else
    -- panic.
  end
end
<...>
mysqlOpen ( onMySQLOpen, "localhost", "user123", "mypassword", "testdatabase", 3306 );