com.abubusoft.kripton.android.sqlite.KriptonSQLiteHelperFactory Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kripton-orm Show documentation
Show all versions of kripton-orm Show documentation
Kripton Persistence Library - ORM module
The newest version!
package com.abubusoft.kripton.android.sqlite;
import androidx.sqlite.db.SupportSQLiteOpenHelper;
import androidx.sqlite.db.SupportSQLiteOpenHelper.Configuration;
/**
* Default open helper for standard sqlite databases.
*
* @author Francesco Benincasa ([email protected])
*
*/
public class KriptonSQLiteHelperFactory implements SupportSQLiteOpenHelper.Factory {
public KriptonSQLiteHelperFactory() {
}
public static KriptonSQLiteHelperFactory build() {
return new KriptonSQLiteHelperFactory();
}
@Override
public SupportSQLiteOpenHelper create(Configuration configuration) {
return new KriptonSQLiteHelper(configuration);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy