Skip to content

qie.isH2Database

Signature: qie.isH2Database(connectionName)

Returns: Boolean isH2 - true if this is a H2 database connection, otherwise false

Returns true if the connectionName is an H2 database connection.

Parameters

Type Name Description Default
String connectionName the name of the database connection

Example

var names = qie.getDbConnectionNames();
for (var i = 0; i < names.length; i++) {
   var connectionName = names[i];
   var isH2Database = qie.isH2Database(connectionName);
}