Changeset 186
- Timestamp:
- 01/10/05 17:53:03 (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/SDMemTableWrapper.h
r158 r186 67 67 68 68 SDMemTableWrapper getSource(const std::string& source) { 69 casa::String cond("SELECT * from $1 WHERE SRCNAME == '");70 cond += source;cond += "' ";69 casa::String cond("SELECT * from $1 WHERE SRCNAME == pattern('"); 70 cond += source;cond += "')"; 71 71 return SDMemTableWrapper(*this, cond); 72 72 } … … 148 148 SDMemTable* getPtr() {return &(*table_);} 149 149 std::string summary() { return table_->summary(); } 150 150 151 151 private: 152 152 casa::CountedPtr<SDMemTable> table_;
Note:
See TracChangeset
for help on using the changeset viewer.