1 22 23 package org.xquark.extractor.mysql.sql; 24 25 26 import org.xquark.extractor.sql.Context; 27 28 public class SfCurrentDateTime extends org.xquark.extractor.sql.SfCurrentDateTime 29 { 30 31 private static final String RCSRevision = "$Revision: 1.3 $"; 32 private static final String RCSName = "$Name: $"; 33 34 35 public SfCurrentDateTime() { 36 super(); 37 } 38 39 public String toSql (Context context) 40 { 41 43 StringBuffer retVal = new StringBuffer (); 44 retVal.append("NOW()"); 45 46 return retVal.toString(); 48 } 49 50 } 51 | Popular Tags |