Package org.robolectric.shadows
Class ShadowLegacySQLiteConnection
java.lang.Object
org.robolectric.shadows.ShadowSQLiteConnection
org.robolectric.shadows.ShadowLegacySQLiteConnection
@Implements(value=android.database.sqlite.SQLiteConnection.class,
isInAndroidSdk=false)
public class ShadowLegacySQLiteConnection
extends ShadowSQLiteConnection
Shadow for
SQLiteConnection
that is backed by sqlite4java.-
Nested Class Summary
Nested classes/interfaces inherited from class org.robolectric.shadows.ShadowSQLiteConnection
ShadowSQLiteConnection.Picker
-
Field Summary
Fields inherited from class org.robolectric.shadows.ShadowSQLiteConnection
useInMemoryDatabase
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionprotected static void
nativeBindBlob
(int connectionPtr, int statementPtr, int index, byte[] value) protected static void
nativeBindBlob
(long connectionPtr, long statementPtr, int index, byte[] value) protected static void
nativeBindDouble
(int connectionPtr, int statementPtr, int index, double value) protected static void
nativeBindDouble
(long connectionPtr, long statementPtr, int index, double value) protected static void
nativeBindLong
(int connectionPtr, int statementPtr, int index, long value) protected static void
nativeBindLong
(long connectionPtr, long statementPtr, int index, long value) protected static void
nativeBindNull
(int connectionPtr, int statementPtr, int index) protected static void
nativeBindNull
(long connectionPtr, long statementPtr, int index) protected static void
nativeBindString
(int connectionPtr, int statementPtr, int index, String value) protected static void
nativeBindString
(long connectionPtr, long statementPtr, int index, String value) protected static void
nativeCancel
(int connectionPtr) protected static void
nativeCancel
(long connectionPtr) protected static void
nativeClose
(int connectionPtr) protected static void
nativeClose
(long connectionPtr) protected static void
nativeExecute
(int connectionPtr, int statementPtr) protected static void
nativeExecute
(long connectionPtr, long statementPtr) protected static void
nativeExecute
(long connectionPtr, long statementPtr, boolean isPragmaStmt) protected static int
nativeExecuteForBlobFileDescriptor
(int connectionPtr, int statementPtr) protected static int
nativeExecuteForBlobFileDescriptor
(long connectionPtr, long statementPtr) protected static int
nativeExecuteForChangedRowCount
(int connectionPtr, int statementPtr) protected static int
nativeExecuteForChangedRowCount
(long connectionPtr, long statementPtr) protected static long
nativeExecuteForCursorWindow
(int connectionPtr, int statementPtr, int windowPtr, int startPos, int requiredPos, boolean countAllRows) protected static long
nativeExecuteForCursorWindow
(long connectionPtr, long statementPtr, long windowPtr, int startPos, int requiredPos, boolean countAllRows) protected static long
nativeExecuteForLastInsertedRowId
(int connectionPtr, int statementPtr) protected static long
nativeExecuteForLastInsertedRowId
(long connectionPtr, long statementPtr) protected static long
nativeExecuteForLong
(int connectionPtr, int statementPtr) protected static long
nativeExecuteForLong
(long connectionPtr, long statementPtr) protected static String
nativeExecuteForString
(int connectionPtr, int statementPtr) protected static String
nativeExecuteForString
(long connectionPtr, long statementPtr) protected static void
nativeFinalizeStatement
(int connectionPtr, int statementPtr) protected static void
nativeFinalizeStatement
(long connectionPtr, long statementPtr) protected static int
nativeGetColumnCount
(int connectionPtr, int statementPtr) protected static int
nativeGetColumnCount
(long connectionPtr, long statementPtr) protected static String
nativeGetColumnName
(int connectionPtr, int statementPtr, int index) protected static String
nativeGetColumnName
(long connectionPtr, long statementPtr, int index) protected static int
nativeGetDbLookaside
(int connectionPtr) protected static int
nativeGetDbLookaside
(long connectionPtr) protected static int
nativeGetParameterCount
(int connectionPtr, int statementPtr) protected static int
nativeGetParameterCount
(long connectionPtr, long statementPtr) protected static boolean
nativeIsReadOnly
(int connectionPtr, int statementPtr) protected static boolean
nativeIsReadOnly
(long connectionPtr, long statementPtr) protected static Number
nativeOpen
(String path, int openFlags, String label, boolean enableTrace, boolean enableProfile) protected static long
nativeOpen
(String path, int openFlags, String label, boolean enableTrace, boolean enableProfile, int lookasideSlotSize, int lookasideSlotCount) protected static int
nativePrepareStatement
(int connectionPtr, String sql) protected static long
nativePrepareStatement
(long connectionPtr, String sql) protected static void
nativeRegisterCustomFunction
(int connectionPtr, SQLiteCustomFunction function) protected static void
nativeRegisterCustomFunction
(long connectionPtr, SQLiteCustomFunction function) protected static void
nativeRegisterLocalizedCollators
(int connectionPtr, String locale) protected static void
nativeRegisterLocalizedCollators
(long connectionPtr, String locale) protected static void
nativeResetCancel
(int connectionPtr, boolean cancelable) protected static void
nativeResetCancel
(long connectionPtr, boolean cancelable) protected static void
nativeResetStatementAndClearBindings
(int connectionPtr, int statementPtr) protected static void
nativeResetStatementAndClearBindings
(long connectionPtr, long statementPtr) static void
reset()
Methods inherited from class org.robolectric.shadows.ShadowSQLiteConnection
dispose, setDefaultJournalMode, setDefaultSyncMode, setUseInMemoryDatabase, sqliteMode
-
Constructor Details
-
ShadowLegacySQLiteConnection
public ShadowLegacySQLiteConnection()
-
-
Method Details
-
nativeOpen
@Implementation(maxSdk=26) protected static Number nativeOpen(String path, int openFlags, String label, boolean enableTrace, boolean enableProfile) -
nativeOpen
@Implementation(minSdk=27) protected static long nativeOpen(String path, int openFlags, String label, boolean enableTrace, boolean enableProfile, int lookasideSlotSize, int lookasideSlotCount) -
nativePrepareStatement
@Implementation(maxSdk=20) protected static int nativePrepareStatement(int connectionPtr, String sql) -
nativePrepareStatement
@Implementation(minSdk=21) protected static long nativePrepareStatement(long connectionPtr, String sql) -
reset
-
nativeClose
-
nativeClose
-
nativeFinalizeStatement
@Implementation(maxSdk=20) protected static void nativeFinalizeStatement(int connectionPtr, int statementPtr) -
nativeFinalizeStatement
@Implementation(minSdk=21) protected static void nativeFinalizeStatement(long connectionPtr, long statementPtr) -
nativeGetParameterCount
@Implementation(maxSdk=20) protected static int nativeGetParameterCount(int connectionPtr, int statementPtr) -
nativeGetParameterCount
@Implementation(minSdk=21) protected static int nativeGetParameterCount(long connectionPtr, long statementPtr) -
nativeIsReadOnly
@Implementation(maxSdk=20) protected static boolean nativeIsReadOnly(int connectionPtr, int statementPtr) -
nativeIsReadOnly
@Implementation(minSdk=21) protected static boolean nativeIsReadOnly(long connectionPtr, long statementPtr) -
nativeExecuteForLong
@Implementation(maxSdk=20) protected static long nativeExecuteForLong(int connectionPtr, int statementPtr) -
nativeExecuteForLong
@Implementation(minSdk=21) protected static long nativeExecuteForLong(long connectionPtr, long statementPtr) -
nativeExecute
-
nativeExecute
@Implementation(minSdk=21, maxSdk=32) protected static void nativeExecute(long connectionPtr, long statementPtr) -
nativeExecute
@Implementation(minSdk=33) protected static void nativeExecute(long connectionPtr, long statementPtr, boolean isPragmaStmt) -
nativeExecuteForString
@Implementation(maxSdk=20) protected static String nativeExecuteForString(int connectionPtr, int statementPtr) -
nativeExecuteForString
@Implementation(minSdk=21) protected static String nativeExecuteForString(long connectionPtr, long statementPtr) -
nativeGetColumnCount
@Implementation(maxSdk=20) protected static int nativeGetColumnCount(int connectionPtr, int statementPtr) -
nativeGetColumnCount
@Implementation(minSdk=21) protected static int nativeGetColumnCount(long connectionPtr, long statementPtr) -
nativeGetColumnName
@Implementation(maxSdk=20) protected static String nativeGetColumnName(int connectionPtr, int statementPtr, int index) -
nativeGetColumnName
@Implementation(minSdk=21) protected static String nativeGetColumnName(long connectionPtr, long statementPtr, int index) -
nativeBindNull
@Implementation(maxSdk=20) protected static void nativeBindNull(int connectionPtr, int statementPtr, int index) -
nativeBindNull
@Implementation(minSdk=21) protected static void nativeBindNull(long connectionPtr, long statementPtr, int index) -
nativeBindLong
@Implementation(maxSdk=20) protected static void nativeBindLong(int connectionPtr, int statementPtr, int index, long value) -
nativeBindLong
@Implementation(minSdk=21) protected static void nativeBindLong(long connectionPtr, long statementPtr, int index, long value) -
nativeBindDouble
@Implementation(maxSdk=20) protected static void nativeBindDouble(int connectionPtr, int statementPtr, int index, double value) -
nativeBindDouble
@Implementation(minSdk=21) protected static void nativeBindDouble(long connectionPtr, long statementPtr, int index, double value) -
nativeBindString
@Implementation(maxSdk=20) protected static void nativeBindString(int connectionPtr, int statementPtr, int index, String value) -
nativeBindString
@Implementation(minSdk=21) protected static void nativeBindString(long connectionPtr, long statementPtr, int index, String value) -
nativeBindBlob
@Implementation(maxSdk=20) protected static void nativeBindBlob(int connectionPtr, int statementPtr, int index, byte[] value) -
nativeBindBlob
@Implementation(minSdk=21) protected static void nativeBindBlob(long connectionPtr, long statementPtr, int index, byte[] value) -
nativeRegisterLocalizedCollators
@Implementation(maxSdk=20) protected static void nativeRegisterLocalizedCollators(int connectionPtr, String locale) -
nativeRegisterLocalizedCollators
@Implementation(minSdk=21) protected static void nativeRegisterLocalizedCollators(long connectionPtr, String locale) -
nativeExecuteForChangedRowCount
@Implementation(maxSdk=20) protected static int nativeExecuteForChangedRowCount(int connectionPtr, int statementPtr) -
nativeExecuteForChangedRowCount
@Implementation(minSdk=21) protected static int nativeExecuteForChangedRowCount(long connectionPtr, long statementPtr) -
nativeExecuteForLastInsertedRowId
@Implementation(maxSdk=20) protected static long nativeExecuteForLastInsertedRowId(int connectionPtr, int statementPtr) -
nativeExecuteForLastInsertedRowId
@Implementation(minSdk=21) protected static long nativeExecuteForLastInsertedRowId(long connectionPtr, long statementPtr) -
nativeExecuteForCursorWindow
@Implementation(maxSdk=20) protected static long nativeExecuteForCursorWindow(int connectionPtr, int statementPtr, int windowPtr, int startPos, int requiredPos, boolean countAllRows) -
nativeExecuteForCursorWindow
@Implementation(minSdk=21) protected static long nativeExecuteForCursorWindow(long connectionPtr, long statementPtr, long windowPtr, int startPos, int requiredPos, boolean countAllRows) -
nativeResetStatementAndClearBindings
@Implementation(maxSdk=20) protected static void nativeResetStatementAndClearBindings(int connectionPtr, int statementPtr) -
nativeResetStatementAndClearBindings
@Implementation(minSdk=21) protected static void nativeResetStatementAndClearBindings(long connectionPtr, long statementPtr) -
nativeCancel
-
nativeCancel
-
nativeResetCancel
@Implementation(maxSdk=20) protected static void nativeResetCancel(int connectionPtr, boolean cancelable) -
nativeResetCancel
@Implementation(minSdk=21) protected static void nativeResetCancel(long connectionPtr, boolean cancelable) -
nativeRegisterCustomFunction
@Implementation(maxSdk=20) protected static void nativeRegisterCustomFunction(int connectionPtr, SQLiteCustomFunction function) -
nativeRegisterCustomFunction
@Implementation(minSdk=21, maxSdk=29) protected static void nativeRegisterCustomFunction(long connectionPtr, SQLiteCustomFunction function) -
nativeExecuteForBlobFileDescriptor
@Implementation(maxSdk=20) protected static int nativeExecuteForBlobFileDescriptor(int connectionPtr, int statementPtr) -
nativeExecuteForBlobFileDescriptor
@Implementation(minSdk=21) protected static int nativeExecuteForBlobFileDescriptor(long connectionPtr, long statementPtr) -
nativeGetDbLookaside
-
nativeGetDbLookaside
-