| 261 | |
| 262 | |
| 263 | BOOL CppSQLite3Query::getBoolField(int nField, BOOL bNullValue/*=FALSE*/) |
| 264 | { |
| 265 | int nDefaultValue = bNullValue ? 1 : 0; |
| 266 | // |
| 267 | return getIntField(nField, nDefaultValue) ? TRUE : FALSE; |
| 268 | } |
| 269 | BOOL CppSQLite3Query::getBoolField(const CString& szField, BOOL bNullValue/*=FALSE*/) |
| 270 | { |
| 271 | int nField = fieldIndex(szField); |