Small. Fast. Reliable.
Choose any three.

Search results 61..70 of 136 for: CREATE TABLE

EXPLAIN QUERY PLAN
(eqp.html)
1.1. Table and Index Scans When processing a SELECT (or other) statement, SQLite may retrieve data from database tables in a variety of ways. It may scan through all the records in a table (a full-table scan), scan a contiguous subset of the records ... 
C API: SQL Keyword Checking
(c3ref/keyword_check.html)
sqlite3_keyword_count(), sqlite3_keyword_name(), sqlite3_keyword_check()
 ... For example, the statement "CREATE TABLE BEGIN(REPLACE,PRAGMA,END);" is accepted by SQLite, and creates a new table named "BEGIN" with three columns named "REPLACE", "PRAGMA", and "END". Nevertheless, best practice is to avoid using keywords as identifiers. Common ... 
 ... Complete ALTER TABLE support  Only the RENAME TABLE, ADD COLUMN, RENAME COLUMN, and DROP COLUMN variants of the ALTER TABLE command are supported. Other kinds of ALTER TABLE operations such as ALTER COLUMN, ADD CONSTRAINT, and so forth are ... 
3. Security Implications  ... ALTER TABLE tab1 RENAME TO tab1_real; CREATE VIEW tab1 AS SELECT * FROM tab1 WHERE system('rm -rf *') IS NOT NULL; Then, when the application attempts to open the database, register the system() function, then run an innocent query against the ... 
2. Usage  ... The SQLITE_MEMSTAT table appears to have the following schema: CREATE TABLE sqlite_memstat( name TEXT, schema TEXT, value INT, hiwtr INT ); Each row of the SQLITE_MEMSTAT table corresponds to a single call to one of the sqlite3_status64() or sqlite3_db_status() interfaces. The ... 
DELETE
(lang_delete.html)
 ... Restrictions on DELETE Statements Within CREATE TRIGGER The following restrictions apply to DELETE statements that occur within the body of a CREATE TRIGGER statement: The table-name specified as part of a DELETE statement within a trigger body must be ... 
sqlite3_get_table(), sqlite3_free_table()
 ... A result table is memory data structure created by the sqlite3_get_table() interface. A result table records the complete query results from one or more queries. The table conceptually has a number of rows and columns. But these numbers are not ... 
8. Extending SQLite  ... sqlite3_create_collation() sqlite3_create_function() sqlite3_create_module() sqlite3_vfs_register() The sqlite3_create_collation() interface is used to create new collating sequences for sorting text. The sqlite3_create_module() interface is used to register new virtual table implementations. The sqlite3_vfs_register() interface creates new VFSes. The sqlite3_create_function() interface creates new SQL ... 
C API: Database Connection Configuration Options
(c3ref/c_dbconfig_defensive.html)
SQLITE_DBCONFIG_MAINDBNAME, SQLITE_DBCONFIG_LOOKASIDE, SQLITE_DBCONFIG_ENABLE_FKEY, SQLITE_DBCONFIG_ENABLE_TRIGGER, SQLITE_DBCONFIG_ENABLE_FTS3_TOKENIZER, SQLITE_DBCONFIG_ENABLE_LOAD_EXTENSION ... 
 ... SQLITE_DBCONFIG_DQS_DDL The SQLITE_DBCONFIG_DQS option activates or deactivates the legacy double-quoted string literal misfeature for DDL statements, such as CREATE TABLE and CREATE INDEX. The default value of this setting is determined by the -DSQLITE_DQS compile-time option. SQLITE_DBCONFIG_TRUSTED_SCHEMA The ... 
Query Planning
(queryplanner.html)
1.1. Tables Without Indices  ... CREATE TABLE FruitsForSale( Fruit TEXT, State TEXT, Price REAL ); With some (arbitrary) data, such a table might be logically stored on disk as shown in figure 1: Figure 1: Logical Layout Of Table "FruitsForSale" In this example, the rowids are ... 

12345678910

Page generated by FTS5 in about 245.18 ms.