| 448 | } |
| 449 | |
| 450 | CString CppSQLite3Query::fieldDeclType(int nCol) |
| 451 | { |
| 452 | checkVM(); |
| 453 | |
| 454 | if (nCol < 0 || nCol > mnCols-1) |
| 455 | { |
| 456 | throw CppSQLite3Exception(CPPSQLITE_ERROR, "Invalid field index requested"); |
| 457 | } |
| 458 | |
| 459 | return sqlite3_column_decltype(mpVM, nCol); |
| 460 | } |
| 461 | |
| 462 | |
| 463 | int CppSQLite3Query::fieldDataType(int nCol) |
nothing calls this directly
no test coverage detected