Db close

db_close

Description:
Function db_close closes an SQLite database that was opened with db_open.
Using an invalid handle will crash your server! Get a valid handle by using db_open. But it's protected against NULL references.
Note: This function name starts with a lowercase letter.


Parameters:
(db)
int db The handle of the database connection to close (returned by db_open).


Return Values:
  • 1: The function executed successfully.
  • 0: The function failed to execute. May mean that the database handle specified is not open.


Examples:
new DB:db_handle;
// ...
public OnGameModeInit()
{
	// Create a connection to the database
	if((db_handle = db_open("example.db")) == DB:0)
	{
		// Error
		print("Failed to open a connection to \"example.db\".");
		SendRconCommand("exit");
	}
	else
	{
		// Success
		print("Successfully created a connection to \"example.db\".");
	}
	// ...
	return 1;
}
 
public OnGameModeExit()
{
	// Close the connection to the database
	db_close(db_handle);
	// ...
	return 1;
}


Related Functions
The following functions may be useful, as they are related to this function in one way or another.