java.lang.Objectorg.quartz.impl.jdbcjobstore.StdJDBCDelegate
org.quartz.impl.jdbcjobstore.DB2v7Delegate
All Implemented Interfaces:
StdJDBCConstants, DriverDelegate
This differs from the StdJDBCDelegate in that it stores
boolean values in an varchar(1) column, and saves
serialized data in a byte array using
PreparedStatement#setObject(int, java.lang.Object, int)
rather than PreparedStatement#setBytes(int, byte[]) .
Blair - Jensen| Fields inherited from org.quartz.impl.jdbcjobstore.StdJDBCDelegate: |
|---|
| logger, tablePrefix, instanceId, useProperties |
| Constructor: |
|---|
|
|
| Method from org.quartz.impl.jdbcjobstore.DB2v7Delegate Summary: |
|---|
| setBoolean, setBytes |
| Methods from java.lang.Object: |
|---|
| equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Method from org.quartz.impl.jdbcjobstore.DB2v7Delegate Detail: |
|---|
boolean value.
This translates the boolean to 1/0 for true/false. |
ByteArrayOutputStream. Will set parameter value to null if the
ByteArrayOutputStream is null.
Wraps PreparedStatement#setObject(int, java.lang.Object, int) rather than
PreparedStatement#setBytes(int, byte[]) as required by the
DB2 v7 database. |