Ejemplo n.º 1
0
 public String getTypeInSQL(DBContext ctx) {
   return ctx.getDBType().getStringType(30);
 }
Ejemplo n.º 2
0
 public String getValueInSQL(DBContext ctx, Object value) {
   Date v = (Date) value;
   return ctx.getDBType().getValueInSQL(v);
 }
Ejemplo n.º 3
0
 public String getTypeInSQL(DBContext ctx) {
   return ctx.getDBType().getBooleanType();
 }
Ejemplo n.º 4
0
 public String getValueInSQL(DBContext ctx, Object value) {
   Boolean v = (Boolean) value;
   return ctx.getDBType().getValueInSQL(v.booleanValue());
 }
Ejemplo n.º 5
0
 public String getTypeInSQL(DBContext ctx) {
   return ctx.getDBType().getDoubleType();
 }