if ( cmdTruncate ) cmdError("Tuple truncate - not implemented (yet)", true) ;
}
private void execPrint(String tableName)
{
Store store = getStore() ;
TupleTable table = null ;
if ( tableName.equalsIgnoreCase(store.getNodeTableDesc().getTableName()))
{
// A hack.
// Need to chage SQLBridge to work on Node tables directly (no special build of value getters)
TableDesc desc = new TableDesc(tableName, store.getNodeTableDesc().getNodeRefColName()) ;
table = new TupleTable(store, desc) ;
}
else
table = new TupleTable(store, tableName) ;
divider() ;