diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-08-09 22:25:47 -0500 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-08-09 22:25:47 -0500 |
commit | eaa7ee2e0bbca40ba3173c4304f81957e8964291 (patch) | |
tree | 4f793aa48a5080aedc94ce6e519c3b86708f2b88 /tqtinterface/qt4/src/3rdparty/sqlite/build.c | |
parent | 79a9d7a46a20d4a0923bc06fc471fdc2176ef865 (diff) | |
download | experimental-eaa7ee2e0bbca40ba3173c4304f81957e8964291.tar.gz experimental-eaa7ee2e0bbca40ba3173c4304f81957e8964291.zip |
rename the following methods:
tqfind find
tqreplace replace
tqcontains contains
Diffstat (limited to 'tqtinterface/qt4/src/3rdparty/sqlite/build.c')
-rw-r--r-- | tqtinterface/qt4/src/3rdparty/sqlite/build.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/tqtinterface/qt4/src/3rdparty/sqlite/build.c b/tqtinterface/qt4/src/3rdparty/sqlite/build.c index 71e0110..86d079d 100644 --- a/tqtinterface/qt4/src/3rdparty/sqlite/build.c +++ b/tqtinterface/qt4/src/3rdparty/sqlite/build.c @@ -5,11 +5,11 @@ ** a legal notice, here is a blessing: ** ** May you do good and not evil. -** May you tqfind forgiveness for yourself and forgive others. +** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ************************************************************************* -** This file tqcontains C code routines that are called by the STQLite parser +** This file contains C code routines that are called by the STQLite parser ** when syntax rules are reduced. The routines in this file handle the ** following kinds of SQL syntax: ** @@ -145,7 +145,7 @@ Table *sqliteLocateTable(Parse *pParse, const char *zName, const char *zDbase){ /* ** Locate the in-memory structure that describes ** a particular index given the name of that index -** and the name of the database that tqcontains the index. +** and the name of the database that contains the index. ** Return NULL if not found. ** ** If zDatabase is 0, all databases are searched for the @@ -603,7 +603,7 @@ void sqliteAddNotNull(Parse *pParse, int onError){ ** token in the sequence of tokens that describe the type of the ** column currently under construction. pLast is the last token ** in the sequence. Use this information to construct a string -** that tqcontains the typename of the column and store that string +** that contains the typename of the column and store that string ** in zType. */ void sqliteAddColumnType(Parse *pParse, Token *pFirst, Token *pLast){ @@ -722,7 +722,7 @@ primary_key_exit: ** Return the appropriate collating type given a type name. ** ** The collation type is text (STQLITE_SO_TEXT) if the type -** name tqcontains the character stream "text" or "blob" or +** name contains the character stream "text" or "blob" or ** "clob". Any other type name is collated as numeric ** (STQLITE_SO_NUM). */ @@ -1154,7 +1154,7 @@ static void sqliteViewResetAll(sqlite *db, int idx){ /* ** Given a token, look up a table with that name. If not found, leave -** an error for the parser to tqfind and return NULL. +** an error for the parser to find and return NULL. */ Table *sqliteTableFromToken(Parse *pParse, Token *pTok){ char *zName; @@ -1335,7 +1335,7 @@ void sqliteAddIdxKeyType(Vdbe *v, Index *pIdx){ ** in the current table point to the foreign key. If pFromCol==0 then ** connect the key to the last column inserted. pTo is the name of ** the table referred to. pToCol is a list of tables in the other -** pTo table that the foreign key points to. flags tqcontains all +** pTo table that the foreign key points to. flags contains all ** information about the conflict resolution algorithms specified ** in the ON DELETE, ON UPDATE and ON INSERT clauses. ** @@ -1675,7 +1675,7 @@ void sqliteCreateIndex( ** ** If pTable==0 it means this index is generated as a primary key ** or UNITQUE constraint of a CREATE TABLE statement. Since the table - ** has just been created, it tqcontains no data and the index initialization + ** has just been created, it contains no data and the index initialization ** step can be skipped. */ else if( db->init.busy==0 ){ |