Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Consistent capitalization on error messages. |
---|---|
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
7edbc9e25094bbf2326909c88a356be5 |
User & Date: | shaneh 2008-12-02 15:20:18.000 |
Context
2008-12-02
| ||
15:22 | Regened after changes to select2.tcl. check-in: 954bc6c11b user: shaneh tags: trunk | |
15:20 | Consistent capitalization on error messages. check-in: 7edbc9e250 user: shaneh tags: trunk | |
15:19 | Changed default hash threshold to 8. Added command line option -ht NUM that overrides any hash threshold in the test script (useful for debugging differences between DB engines). check-in: d1697d2d5f user: shaneh tags: trunk | |
Changes
Changes to src/slt_sqlite.c.
︙ | ︙ | |||
101 102 103 104 105 106 107 | ** from malloc. Or if zValue is NULL, then a NULL pointer is appended. */ static void appendValue(ResAccum *p, const char *zValue){ char *z; if( zValue ){ z = sqlite3_mprintf("%s", zValue); if( z==0 ){ | | | | 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 | ** from malloc. Or if zValue is NULL, then a NULL pointer is appended. */ static void appendValue(ResAccum *p, const char *zValue){ char *z; if( zValue ){ z = sqlite3_mprintf("%s", zValue); if( z==0 ){ fprintf(stderr, "Out of memory at %s:%d\n", __FILE__, __LINE__); exit(1); } }else{ z = 0; } if( p->nUsed>=p->nAlloc ){ char **az; p->nAlloc += 200; az = sqlite3_realloc(p->azValue, p->nAlloc*sizeof(p->azValue[0])); if( az==0 ){ fprintf(stderr, "Out of memory at %s:%d\n", __FILE__, __LINE__); exit(1); } p->azValue = az; } p->azValue[p->nUsed++] = z; } |
︙ | ︙ | |||
154 155 156 157 158 159 160 | rc = sqlite3_prepare_v2(db, zSql, -1, &pStmt, 0); if( rc!=SQLITE_OK ){ sqlite3_finalize(pStmt); return 1; } if( strlen(zType)!=sqlite3_column_count(pStmt) ){ fprintf(stderr, "Wrong number of result columns: Expected %d but got %d\n", | | | 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 | rc = sqlite3_prepare_v2(db, zSql, -1, &pStmt, 0); if( rc!=SQLITE_OK ){ sqlite3_finalize(pStmt); return 1; } if( strlen(zType)!=sqlite3_column_count(pStmt) ){ fprintf(stderr, "Wrong number of result columns: Expected %d but got %d\n", (int)strlen(zType), sqlite3_column_count(pStmt)); return 1; } while( sqlite3_step(pStmt)==SQLITE_ROW ){ int i; for(i=0; zType[i]; i++){ if( sqlite3_column_type(pStmt, i)==SQLITE_NULL ){ appendValue(&res, "NULL"); |
︙ | ︙ |