Returns the database instance name of the connection whose name passed as a first parameter. If the connection does not exist, returns null.
char get_database_name(char connectionName);
Returns the database instance name of the connection if exists. Otherwise, returns null.
void cb.show_database_name() {
char info = get_database_name('default');
message(info);
}