Changeset 147
- Timestamp:
- 05/30/08 16:42:00 (7 months ago)
- Files:
-
- trunk/wxdba/wxdba/sqlistream.cpp (modified) (1 diff)
- trunk/wxdba/wxdba/sqlistream.h (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/wxdba/wxdba/sqlistream.cpp
r40 r147 66 66 67 67 bool 68 SQLIStream::Get(dba::Storeable* pObject, const wxString& pRootTable) { 69 try { 70 return dba::SQLIStream::get(pObject, pRootTable.empty() ? (const char*)NULL : Tools::ConvertToDbStr(pRootTable, getConversionSpecs().mDbCharset).c_str()); 71 } catch (const dba::Exception& pEx) { 72 Exception::Rethrow(pEx); 73 }; 74 }; 75 76 bool 68 77 SQLIStream::UpdateVars() { 69 78 try { trunk/wxdba/wxdba/sqlistream.h
r20 r147 25 25 void OpenFromQuery(dba::Storeable& pClass,const wxString& pQuery, const wxString& pMainTable = wxEmptyString); 26 26 bool GetNext(dba::Storeable* pObject); 27 bool Get(dba::Storeable* pObject, const wxString& pRootTable = wxEmptyString); 27 28 bool UpdateVars(); 28 29 DbResult* SendQuery(const wxString& pQuery) const;
