| 281 | TIME2SQL(t)); |
| 282 | } |
| 283 | CString WizIndexBase::formatQuerySQLByTime3(const CString& strTableName, |
| 284 | const CString& strFieldList, |
| 285 | const CString& strInfoFieldName, |
| 286 | const CString& strDataFieldName, |
| 287 | const CString& strParamFieldName, |
| 288 | const QDateTime& t) |
| 289 | { |
| 290 | return WizFormatString6("select %1 from %2 where %3 >= %6 or %4 >= %6 or %5 >= %6", |
| 291 | strFieldList, |
| 292 | strTableName, |
| 293 | strInfoFieldName, |
| 294 | strDataFieldName, |
| 295 | strParamFieldName, |
| 296 | TIME2SQL(t)); |
| 297 | } |
| 298 | |
| 299 | CString WizIndexBase::formatModifiedQuerySQL(const CString& strTableName, |
| 300 | const CString& strFieldList) |
nothing calls this directly
no test coverage detected