meta.getMap().add(new CaoMetaDefinition(meta, name, CaoMetaDefinition.TYPE.STRING, null, 200));
}
}
private DbResult createResult() throws Exception {
DbResult res = null;
DbConnection con = ((DbCaoConnection)getConnection()).getPool().getConnection();
DbStatement sth = con.createStatement(queryString);
if (sth.execute( ((DbApplication)getApplication()).getMapping() )) {
res = sth.getResultSet();
} else {