HomeSort by relevance Sort by last modified time
    Searched refs:coltype (Results 1 - 5 of 5) sorted by null

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/_sqlite/
cursor.c 308 int coltype; local
362 coltype = sqlite3_column_type(self->statement->st, i); local
364 if (coltype == SQLITE_NULL) {
367 } else if (coltype == SQLITE_INTEGER) {
374 } else if (coltype == SQLITE_FLOAT) {
376 } else if (coltype == SQLITE_TEXT) {
399 /* coltype == SQLITE_BLOB */
    [all...]
  /external/python/cpython2/Modules/_sqlite/
cursor.c 297 int coltype; local
350 coltype = sqlite3_column_type(self->statement->st, i); local
352 if (coltype == SQLITE_NULL) {
355 } else if (coltype == SQLITE_INTEGER) {
357 } else if (coltype == SQLITE_FLOAT) {
359 } else if (coltype == SQLITE_TEXT) {
383 /* coltype == SQLITE_BLOB */
    [all...]
  /external/python/cpython3/Modules/_sqlite/
cursor.c 231 int coltype; local
282 coltype = sqlite3_column_type(self->statement->st, i); local
284 if (coltype == SQLITE_NULL) {
287 } else if (coltype == SQLITE_INTEGER) {
289 } else if (coltype == SQLITE_FLOAT) {
291 } else if (coltype == SQLITE_TEXT) {
326 /* coltype == SQLITE_BLOB */
  /prebuilts/go/darwin-x86/src/database/sql/
fakedb_test.go 96 coltype []string
110 cols []interface{} // must be same size as its table colname + coltype
183 colType []string // used by CREATE
305 db.tables[name] = &table{colname: columnNames, coltype: columnTypes}
327 return t.coltype[n], true
536 stmt.colType = append(stmt.colType, nameType[1])
757 if err := db.createTable(s.table, s.colName, s.colType); err != nil {
933 var colType []string
935 colType = append(colType, t.coltype[t.columnIndex(column)]
    [all...]
  /prebuilts/go/linux-x86/src/database/sql/
fakedb_test.go 96 coltype []string
110 cols []interface{} // must be same size as its table colname + coltype
183 colType []string // used by CREATE
305 db.tables[name] = &table{colname: columnNames, coltype: columnTypes}
327 return t.coltype[n], true
536 stmt.colType = append(stmt.colType, nameType[1])
757 if err := db.createTable(s.table, s.colName, s.colType); err != nil {
933 var colType []string
935 colType = append(colType, t.coltype[t.columnIndex(column)]
    [all...]

Completed in 199 milliseconds