Home
last modified time | relevance | path

Searched refs:execSQL (Results 1 – 25 of 39) sorted by relevance

12

/sqlite/sqlite-framework/src/androidInstrumentedTest/kotlin/androidx/sqlite/db/framework/
DFrameworkSQLiteDatabaseTest.kt50 db.execSQL("create table user (idk int)") in <lambda>()
67 db.execSQL("create table user (idk int)") in <lambda>()
94 db1.execSQL("ATTACH DATABASE '${db2.path}' AS database2") in <lambda>()
115 db.execSQL("CREATE TABLE Foo (id INTEGER NOT NULL PRIMARY KEY, data TEXT)") in <lambda>()
116 db.execSQL("INSERT INTO Foo (id, data) VALUES (1, 'bar')") in <lambda>()
140 db.execSQL("ALTER TABLE Foo RENAME TO Foo_old") in <lambda>()
141 db.execSQL("CREATE TABLE Foo (id INTEGER NOT NULL PRIMARY KEY)") in <lambda>()
171 database.execSQL("CREATE TABLE t1 (i int);") in <lambda>()
172 database.execSQL("INSERT INTO t1 (i) VALUES (2)") in <lambda>()
173 database.execSQL("INSERT INTO t1 (i) VALUES (3)") in <lambda>()
DOpenHelperRecoveryTest.kt60 db.execSQL("CREATE TABLE Foo (id INTEGER PRIMARY KEY)") in <lambda>()
83 db.execSQL("CREATE TABLE Foo (id INTEGER PRIMARY KEY)") in <lambda>()
146 db.execSQL("SELECT * FROM bad_table") in <lambda>()
193 .use { db -> db.execSQL("CREATE TABLE Foo (id INTEGER PRIMARY KEY)") } in <lambda>()
208 db.execSQL("SELECT * FROM bad_table") in <lambda>()
227 .use { db -> db.execSQL("CREATE TABLE Foo (id INTEGER PRIMARY KEY)") } in <lambda>()
242 db.execSQL("SELECT * FROM bad_table") in <lambda>()
272 db.execSQL("SELECT * FROM bad_table") in <lambda>()
303 db.execSQL("SELECT * FROM bad_table") in <lambda>()
/sqlite/integration-tests/driver-conformance-test/src/commonTest/kotlin/androidx/sqlite/driver/test/
DBaseConformanceTest.kt28 import androidx.sqlite.execSQL in <lambda>()
62 connection.execSQL( in <lambda>()
144 connection.execSQL("CREATE TABLE Test (textCol TEXT)") in <lambda>()
162 connection.execSQL("CREATE TABLE Test (data BLOB)") in <lambda>()
175 connection.execSQL("CREATE TABLE Test (data TEXT)") in <lambda>()
188 connection.execSQL("CREATE TABLE Test (date TEXT)") in <lambda>()
201 connection.execSQL("CREATE TABLE Test (col)") in <lambda>()
215 connection.execSQL("CREATE TABLE Test (col)") in <lambda>()
244 connection.execSQL("CREATE TABLE Test (col)") in <lambda>()
245 connection.execSQL("INSERT INTO Test (col) VALUES ('')") in <lambda>()
[all …]
DBaseBundledConformanceTest.kt24 import androidx.sqlite.execSQL in <lambda>()
62 connection.execSQL("CREATE TABLE Test (col)") in <lambda>()
/sqlite/sqlite-inspection/src/androidTest/java/androidx/sqlite/inspection/test/
DDatabaseExtensions.kt26 fun SQLiteDatabase.addTable(table: Table) = execSQL(table.toCreateString()) in <lambda>()
39 execSQL( in <lambda>()
DGetSchemaTest.kt90 .forEach { query -> db.execSQL(query, emptyArray()) } in <lambda>()
144 it.execSQL("CREATE TABLE t1 (c2 INTEGER PRIMARY KEY AUTOINCREMENT)") in <lambda>()
145 it.execSQL("INSERT INTO t1 VALUES(3)") in <lambda>()
DDatabaseLockingTest.kt264 db.execSQL("insert into ${table.name} values (1)") in <lambda>()
385 instance.execSQL("insert into ${table.name} values ($value)") in <lambda>()
/sqlite/sqlite/src/androidMain/kotlin/androidx/sqlite/db/
DSupportSQLiteDatabase.android.kt425 @Throws(SQLException::class) public fun execSQL(sql: String) method
439 @Throws(SQLException::class) public fun execSQL(sql: String, bindArgs: Array<out Any?>) method
/sqlite/sqlite/src/commonMain/kotlin/androidx/sqlite/
DSQLite.kt55 public fun SQLiteConnection.execSQL(sql: String) { in execSQL() method
/sqlite/sqlite-framework/src/androidMain/kotlin/androidx/sqlite/db/framework/
DFrameworkSQLiteDatabase.android.kt263 override fun execSQL(sql: String) { in <lambda>() method in androidx.sqlite.db.framework.FrameworkSQLiteDatabase
264 delegate.execSQL(sql) in <lambda>()
268 override fun execSQL(sql: String, bindArgs: Array<out Any?>) { in <lambda>() method in androidx.sqlite.db.framework.FrameworkSQLiteDatabase
269 delegate.execSQL(sql, bindArgs) in <lambda>()
/sqlite/sqlite/api/
Dapi_lint.ignore4 ArrayReturn: androidx.sqlite.db.SupportSQLiteDatabase#execSQL(String, Object[]) parameter #1:
14 BannedThrow: androidx.sqlite.db.SupportSQLiteDatabase#execSQL(String):
16 BannedThrow: androidx.sqlite.db.SupportSQLiteDatabase#execSQL(String, Object[]):
Drestricted_2.1.0-rc01.txt23 method public void execSQL(String!) throws android.database.SQLException;
24 method public void execSQL(String!, Object![]!) throws android.database.SQLException;
Drestricted_2.2.0-beta01.txt24 method public void execSQL(String!) throws android.database.SQLException;
25 method public void execSQL(String!, Object![]!) throws android.database.SQLException;
D2.2.0-beta02.txt24 method public void execSQL(String!) throws android.database.SQLException;
25 method public void execSQL(String!, Object![]!) throws android.database.SQLException;
D2.1.0-beta01.txt23 method public void execSQL(String!) throws android.database.SQLException;
24 method public void execSQL(String!, Object![]!) throws android.database.SQLException;
Drestricted_2.2.0-beta03.txt24 method public void execSQL(String!) throws android.database.SQLException;
25 method public void execSQL(String!, Object![]!) throws android.database.SQLException;
D2.2.0-beta03.txt24 method public void execSQL(String!) throws android.database.SQLException;
25 method public void execSQL(String!, Object![]!) throws android.database.SQLException;
D2.2.0-beta01.txt24 method public void execSQL(String!) throws android.database.SQLException;
25 method public void execSQL(String!, Object![]!) throws android.database.SQLException;
D2.1.0-rc01.txt23 method public void execSQL(String!) throws android.database.SQLException;
24 method public void execSQL(String!, Object![]!) throws android.database.SQLException;
Drestricted_2.1.0-beta01.txt23 method public void execSQL(String!) throws android.database.SQLException;
24 method public void execSQL(String!, Object![]!) throws android.database.SQLException;
D2.0.0.txt23 method public void execSQL(String!) throws android.database.SQLException;
24 method public void execSQL(String!, Object![]!) throws android.database.SQLException;
Drestricted_2.2.0-beta02.txt24 method public void execSQL(String!) throws android.database.SQLException;
25 method public void execSQL(String!, Object![]!) throws android.database.SQLException;
Drestricted_2.0.0.txt23 method public void execSQL(String!) throws android.database.SQLException;
24 method public void execSQL(String!, Object![]!) throws android.database.SQLException;
/sqlite/sqlite/bcv/native/
D2.5.0-beta01.txt64 …droidx.sqlite/SQLiteConnection).androidx.sqlite/execSQL(kotlin/String) // androidx.sqlite/execSQL|
Dcurrent.txt64 …droidx.sqlite/SQLiteConnection).androidx.sqlite/execSQL(kotlin/String) // androidx.sqlite/execSQL|

12