| 208 | } |
| 209 | |
| 210 | unsigned long get_num_columns( |
| 211 | ) const |
| 212 | { |
| 213 | if( (at_first_step==false) && (step_status==SQLITE_ROW)) |
| 214 | { |
| 215 | return sqlite3_column_count(stmt); |
| 216 | } |
| 217 | else |
| 218 | { |
| 219 | return 0; |
| 220 | } |
| 221 | } |
| 222 | |
| 223 | const std::string& get_sql_string ( |
| 224 | ) const |
no outgoing calls
no test coverage detected