Files
rr3-apk/decompiled/sources/androidx/sqlite/db/SupportSQLiteDatabase.java
Daniel Elliott f9d20bb3fc Add decompiled APK source code (JADX)
- 28,932 files
- Full Java source code
- Smali files
- Resources

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
2026-02-18 14:52:23 -08:00

107 lines
2.6 KiB
Java

package androidx.sqlite.db;
import android.annotation.SuppressLint;
import android.content.ContentValues;
import android.database.Cursor;
import android.database.SQLException;
import android.database.sqlite.SQLiteTransactionListener;
import android.os.CancellationSignal;
import android.util.Pair;
import androidx.annotation.RequiresApi;
import java.io.Closeable;
import java.util.List;
import java.util.Locale;
import kotlin.jvm.internal.Intrinsics;
/* loaded from: classes.dex */
public interface SupportSQLiteDatabase extends Closeable {
void beginTransaction();
void beginTransactionNonExclusive();
void beginTransactionWithListener(SQLiteTransactionListener sQLiteTransactionListener);
void beginTransactionWithListenerNonExclusive(SQLiteTransactionListener sQLiteTransactionListener);
SupportSQLiteStatement compileStatement(String str);
int delete(String str, String str2, Object[] objArr);
@RequiresApi(api = 16)
void disableWriteAheadLogging();
boolean enableWriteAheadLogging();
void endTransaction();
void execSQL(String str) throws SQLException;
void execSQL(String str, Object[] objArr) throws SQLException;
List<Pair<String, String>> getAttachedDbs();
long getMaximumSize();
long getPageSize();
String getPath();
int getVersion();
boolean inTransaction();
long insert(String str, int i, ContentValues contentValues) throws SQLException;
boolean isDatabaseIntegrityOk();
boolean isDbLockedByCurrentThread();
default boolean isExecPerConnectionSQLSupported() {
return false;
}
boolean isOpen();
boolean isReadOnly();
@RequiresApi(api = 16)
boolean isWriteAheadLoggingEnabled();
boolean needUpgrade(int i);
Cursor query(SupportSQLiteQuery supportSQLiteQuery);
@RequiresApi(api = 16)
Cursor query(SupportSQLiteQuery supportSQLiteQuery, CancellationSignal cancellationSignal);
Cursor query(String str);
Cursor query(String str, Object[] objArr);
@RequiresApi(api = 16)
void setForeignKeyConstraintsEnabled(boolean z);
void setLocale(Locale locale);
void setMaxSqlCacheSize(int i);
long setMaximumSize(long j);
void setPageSize(long j);
void setTransactionSuccessful();
void setVersion(int i);
int update(String str, int i, ContentValues contentValues, String str2, Object[] objArr);
boolean yieldIfContendedSafely();
boolean yieldIfContendedSafely(long j);
default void execPerConnectionSQL(String sql, @SuppressLint({"ArrayReturn"}) Object[] objArr) {
Intrinsics.checkNotNullParameter(sql, "sql");
throw new UnsupportedOperationException();
}
}