1 10 11 package com.triactive.jdo.store; 12 13 import java.sql.Timestamp ; 14 15 16 class SqlTimestampLiteral extends SqlTimestampExpression 17 { 18 private final Timestamp value; 19 20 public SqlTimestampLiteral(QueryStatement qs, ColumnMapping mapping, Timestamp value) 21 { 22 super(qs); 23 24 this.value = value; 25 st.appendParameter(mapping, value); 26 } 27 28 public String toString() 29 { 30 return super.toString() + " = " + value.toString(); 31 } 32 } 33 | Popular Tags |