Searched defs:paramtab (Results 1 - 2 of 2) sorted by relevance

/glassfish-3.1.2/persistence/cmp/support-sqlstore/src/main/java/com/sun/jdo/spi/persistence/support/sqlstore/query/
H A DQueryImpl.java143 private transient ParameterTable paramtab; field in class:QueryImpl
167 this.paramtab = new ParameterTable();
211 // initialize paramtab, jqlc and compiled
212 if (other.paramtab != null)
215 this.paramtab = new ParameterTable(other.paramtab);
220 // other.paramtab == null means deserialized query =>
224 this.paramtab = new ParameterTable();
290 synchronized (this.paramtab)
304 synchronized (this.paramtab)
[all...]
/glassfish-3.1.2/persistence/cmp/support-sqlstore/src/main/java/com/sun/jdo/spi/persistence/support/sqlstore/query/jqlc/
H A DJQLC.java307 public void semanticCheck(ParameterTable paramtab) argument
312 paramtab.init();
314 semantic.init(typetab, paramtab, errorMsg);
341 public RetrieveDesc codeGen(PersistenceManager pm, ParameterTable paramtab) argument
349 String key = paramtab.getKeyForRetrieveDescCache();
358 optimizer.init(typetab, paramtab, errorMsg);
362 codeGen.init(pm, typetab, paramtab, errorMsg, prefetchEnabled);

Completed in 13 milliseconds