All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.abubusoft.kripton.android.sqlite.KriptonSQLiteHelperFactory Maven / Gradle / Ivy

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