getDatabaseConf method

IFirebirdConf getDatabaseConf(
  1. String dbName
)

Implementation

IFirebirdConf getDatabaseConf(String dbName) {
  final dbNameUtf = dbName.toNativeUtf8(allocator: mem);
  try {
    return IFirebirdConf(_getDatabaseConf(self, dbNameUtf));
  } finally {
    mem.free(dbNameUtf);
  }
}