Scripting/Squirrel/Functions/mysql change user: Difference between revisions
		
		
		
		Jump to navigation
		Jump to search
		

This wiki is using an old backup from 2020
Some information may be old/missing
| No edit summary | m (Do not sign your edits) | ||
| Line 18: | Line 18: | ||
|      mysql_change_user(handler,"reader","password"), |      mysql_change_user(handler,"reader","password"), | ||
|      print("Successfully connected to read-only mode");</pre> |      print("Successfully connected to read-only mode");</pre> | ||
Revision as of 03:36, 10 March 2016
Changes the current MySQL session authentication.
Syntax
mysql_change_user ( MySQLConnection handler, string new_username, string new_password )
Arguments
- MySQLConnection handler - A valid MySQL link/handler
- String new_username - The new username
- String new_password - The password for the new username
Return value
true on success and/or false on failure
Example
handler <- mysql_connect("localhost","writer","password","database");
if( handler ) print("Successfully connected.");
else
    mysql_change_user(handler,"reader","password"),
    print("Successfully connected to read-only mode");