Interested in improving this site? Please check the To Do page.

Back to MySQL Verbs

mysql.end

Closes out the MySQL library.

Syntax

mysql.end()

Params

None

Returns

Always returns true

Examples

on init () {
	bundle { // initialize the MySQL library
		try {
			mysql.init()}
		else {
			dialog.alert(tryError)}};
	mysql.end()}

Notes

This should be called when you exit Frontier or after all other MySQL-related calls. Obviously, close all open databases and do all other MySQL-related maintenance before calling this function.

See Also


Personal Tools