OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:sqlite_master
(Results
1 - 16
of
16
) sorted by null
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/sqlite3/
dump.py
22
#
sqlite_master
table contains the SQL CREATE statements for the database.
25
FROM "
sqlite_master
"
35
yield('ANALYZE "
sqlite_master
";')
41
# yield("INSERT INTO
sqlite_master
(type,name,tbl_name,rootpage,sql)"\
62
FROM "
sqlite_master
"
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/sqlite3/
dump.py
22
#
sqlite_master
table contains the SQL CREATE statements for the database.
25
FROM "
sqlite_master
"
35
yield('ANALYZE "
sqlite_master
";')
41
# yield("INSERT INTO
sqlite_master
(type,name,tbl_name,rootpage,sql)"\
62
FROM "
sqlite_master
"
/external/chromium_org/third_party/sqlite/src/tool/
space_used.tcl
37
SELECT name, type, rootpage FROM
sqlite_master
39
SELECT '
sqlite_master
', 'table', 2
fragck.tcl
78
if {$objname=="
sqlite_master
"} {
83
SELECT rootpage, type FROM
sqlite_master
spaceanal.tcl
87
set sql { SELECT name, tbl_name FROM
sqlite_master
WHERE rootpage>0 }
88
foreach {name tblname} [concat
sqlite_master
sqlite_master
[db eval $sql]] {
357
# (not including
sqlite_master
)
377
set ntable [db eval {SELECT count(*)+1 FROM
sqlite_master
WHERE type='table'}]
378
set nindex [db eval {SELECT count(*) FROM
sqlite_master
WHERE type='index'}]
379
set sql {SELECT count(*) FROM
sqlite_master
WHERE name LIKE 'sqlite_autoindex%'}
385
WHERE NOT is_index AND name NOT LIKE '
sqlite_master
'}]
479
The number of tables in the database, including the
SQLITE_MASTER
table
502
schema information in the
SQLITE_MASTER
table is not counted whe
[
all
...]
mkspeedsql.tcl
63
SELECT name FROM
sqlite_master
ORDER BY 1;
/external/chromium_org/third_party/sqlite/src/test/
collate6.test
143
SELECT 1 FROM
sqlite_master
WHERE name COLLATE nocase = 'hello';
148
SELECT 1 FROM
sqlite_master
WHERE 'hello' = name COLLATE nocase;
tester.tcl
446
db eval {SELECT tbl_name AS t FROM
sqlite_master
WHERE type = 'table'} {
841
puts $f {db eval {SELECT * FROM
sqlite_master
;}}
[
all
...]
async2.test
87
SELECT name FROM
sqlite_master
;
fuzz_common.tcl
115
set TemplateList [concat
sqlite_master
$::TableList]
/external/chromium_org/third_party/sqlite/src/src/
test8.c
339
"SELECT sql FROM
sqlite_master
WHERE type = 'table' AND name = ?",
[
all
...]
shell.c
927
** querying the
SQLITE_MASTER
table.
[
all
...]
/external/chromium_org/third_party/sqlite/src/ext/rtree/
viewrtree.tcl
39
FROM
sqlite_master
/external/sqlite/dist/orig/
shell.c
[
all
...]
/external/sqlite/dist/
shell.c
[
all
...]
/external/chromium_org/third_party/sqlite/src/contrib/
sqlitecon.tcl
267
set cmd {SELECT name FROM
sqlite_master
WHERE type='table'
272
append cmd "UNION ALL SELECT name FROM $name.
sqlite_master
\
282
set cmd "SELECT sql FROM
sqlite_master
WHERE tbl_name LIKE '$pattern'
287
append cmd " UNION ALL SELECT sql FROM $name.
sqlite_master
\
296
set cmd "SELECT sql FROM
sqlite_master
WHERE name LIKE '$pattern'
301
append cmd " UNION ALL SELECT sql FROM $name.
sqlite_master
\
Completed in 278 milliseconds