source: MML/trunk/applications/database/mym/dbm/@FilteredDB/tableExist.m @ 4

Last change on this file since 4 was 4, checked in by zhangj, 10 years ago

Initial import--MML version from SOLEIL@2013

File size: 238 bytes
Line 
1function yn = tableExist(a_f, a_tableName)
2% CLIST - list all collections existing for the tableCurrent connection
3%   clist(f) returns the collection names in a cell array.
4
5tables = tableList(a_f);
6yn = any(strcmp(tables, a_tableName));
Note: See TracBrowser for help on using the repository browser.