------------------------------------------------------------------------------
| 220 | |
| 221 | //------------------------------------------------------------------------------ |
| 222 | int vtkSQLiteQuery::GetNumberOfFields() |
| 223 | { |
| 224 | if (!this->Active) |
| 225 | { |
| 226 | vtkErrorMacro(<< "GetNumberOfFields(): Query is not active!"); |
| 227 | return 0; |
| 228 | } |
| 229 | else |
| 230 | { |
| 231 | return sqlite3_column_count(this->Private->Statement); |
| 232 | } |
| 233 | } |
| 234 | |
| 235 | //------------------------------------------------------------------------------ |
| 236 | const char* vtkSQLiteQuery::GetFieldName(int column) |
no outgoing calls