dbGetDriverName#
Purpose#
Returns the name of the connection’s database driver.
Format#
- driver_name = dbGetDriverName(db_id)#
- Parameters:
db_id (scalar) – database connection index number.
- Returns:
driver_name (string) – name of the database driver.
Examples#
db_id = dbAddDatabase("SQLITE");
print "Driver = " dbGetDriverName(db_id);
Driver = SQLITE