1 22 23 package org.xquark.extractor.mysql.sql; 24 25 import org.xquark.extractor.sql.Context; 26 27 public class SqlAttributeExpression extends org.xquark.extractor.sql.SqlAttributeExpression 28 { 29 30 private static final String RCSRevision = "$Revision: 1.1 $"; 31 private static final String RCSName = "$Name: $"; 32 33 public SqlAttributeExpression() {} 34 35 public SqlAttributeExpression(String tableInstance, String attribute) 36 { 37 super(tableInstance, attribute); 38 } 39 40 public String toSql(Context context) { 41 return super.toSql(context,false); 42 } 43 } 44 | Popular Tags |