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

android.database.sqlite.SQLiteOpenHelper Maven / Gradle / Ivy

package android.database.sqlite;

import android.content.Context;
import android.database.DatabaseErrorHandler;

public abstract class SQLiteOpenHelper
{
    public SQLiteOpenHelper(Context context, String name, SQLiteDatabase.CursorFactory factory, int version)
    {
        throw new RuntimeException("Stub!");
    }

    public SQLiteOpenHelper(Context context, String name, SQLiteDatabase.CursorFactory factory, int version, DatabaseErrorHandler errorHandler)
    {
        throw new RuntimeException("Stub!");
    }

    public String getDatabaseName()
    {
        throw new RuntimeException("Stub!");
    }

    public void setWriteAheadLoggingEnabled(boolean enabled)
    {
        throw new RuntimeException("Stub!");
    }

    public SQLiteDatabase getWritableDatabase()
    {
        throw new RuntimeException("Stub!");
    }

    public SQLiteDatabase getReadableDatabase()
    {
        throw new RuntimeException("Stub!");
    }

    public synchronized void close()
    {
        throw new RuntimeException("Stub!");
    }

    public void onConfigure(SQLiteDatabase db)
    {
        throw new RuntimeException("Stub!");
    }

    public abstract void onCreate(SQLiteDatabase paramSQLiteDatabase);

    public abstract void onUpgrade(SQLiteDatabase paramSQLiteDatabase, int paramInt1, int paramInt2);

    public void onDowngrade(SQLiteDatabase db, int oldVersion, int newVersion)
    {
        throw new RuntimeException("Stub!");
    }

    public void onOpen(SQLiteDatabase db)
    {
        throw new RuntimeException("Stub!");
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy