throw new JdbcSQLException("Must init FlashDatabase.LOCAL_DRIVER_INSTANCE[0] first.");
return new JdbcConnection(FlashDatabase.LOCAL_DRIVER_INSTANCE[0], url);
}
String remoteUrl = url.substring(URL_remote.length());
FlashDatabase flashDatabase = RemoteFlashDatabase.connect(remoteUrl);
return new JdbcConnection(flashDatabase, remoteUrl);
} catch (Exception e) {
throw new JdbcSQLException(e);
}
}