It looks like you're new here. If you want to get involved, click one of these buttons!
/**
* Returns the the fully expanded class name of the JDBC driver to be used by JDX ORM.
* A subclass may override this method to provide a non-default JDBC driver name.
* <p>
* @return JDBC Driver class name
*/
protected String getJDBCDriverClass() {
return "org.sqldroid.SQLDroidDriver";
}
/**
* Returns the prefix for the JDBC url as per the JDBC driver used.
* A subclass may override this method to provide a non-default value.
*
* @return JDBC url prefix
*/
protected String getJDBCPrefix() {
return "jdbc:sqldroid:";
}
setDatabaseAndJDX_InitializerClass(ormId, MyDatabaseAndJDX_Initializer.class);
Copyright © 2024 Software Tree, LLC. All rights reserved.
Comments