All Downloads are FREE. Search and download functionalities are using the official Maven repository.

oracle.sql.TIMESTAMP Maven / Gradle / Ivy

The newest version!
package oracle.sql;


/**
 * Dummy {@code TIMESTAMP} interface which avoids a dependency to OJDBC.
 */
public class TIMESTAMP {

  private byte[] timestamp;

  public TIMESTAMP(byte[] timestamp) {
    this.timestamp = timestamp;
  }

  public byte[] toBytes() {
    return this.timestamp;
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy