| 461 | |
| 462 | |
| 463 | int CppSQLite3Query::fieldDataType(int nCol) |
| 464 | { |
| 465 | checkVM(); |
| 466 | |
| 467 | if (nCol < 0 || nCol > mnCols-1) |
| 468 | { |
| 469 | throw CppSQLite3Exception(CPPSQLITE_ERROR, "Invalid field index requested"); |
| 470 | } |
| 471 | |
| 472 | return sqlite3_column_type(mpVM, nCol); |
| 473 | } |
| 474 | |
| 475 | |
| 476 | bool CppSQLite3Query::eof() |
nothing calls this directly
no test coverage detected