| 268 | TIME2SQL(t)); |
| 269 | } |
| 270 | CString WizIndexBase::formatQuerySQLByTime2(const CString& strTableName, |
| 271 | const CString& strFieldList, |
| 272 | const CString& strInfoFieldName, |
| 273 | const CString& strDataFieldName, |
| 274 | const WizOleDateTime& t) |
| 275 | { |
| 276 | return WizFormatString5("select %1 from %2 where %3 >= %5 or %4 >= %5", |
| 277 | strFieldList, |
| 278 | strTableName, |
| 279 | strInfoFieldName, |
| 280 | strDataFieldName, |
| 281 | TIME2SQL(t)); |
| 282 | } |
| 283 | CString WizIndexBase::formatQuerySQLByTime3(const CString& strTableName, |
| 284 | const CString& strFieldList, |
| 285 | const CString& strInfoFieldName, |
nothing calls this directly
no test coverage detected