1 22 23 package org.xquark.mapper.dbms.timesten; 24 25 import java.sql.Connection ; 26 import java.sql.SQLException ; 27 28 import org.xquark.jdbc.typing.DBMSInfo; 29 import org.xquark.mapper.RepositoryException; 30 import org.xquark.mapper.dbms.JDBC1Connection; 31 32 36 public class TT40Connection extends JDBC1Connection 37 { 38 private static final String RCSRevision = "$Revision: 1.2 $"; 39 private static final String RCSName = "$Name: $"; 40 41 42 43 44 public TT40Connection(Connection connection, short dbms, DBMSInfo dbmsInfo) 45 throws SQLException 46 { 47 super(connection, dbms, dbmsInfo); 48 } 49 50 54 58 public String getDeleteUserTableRowsStatement(String tableName, String documentRowsSelectionClause) 59 throws SQLException , RepositoryException 60 { 61 throw new RepositoryException(RepositoryException.NOT_IMPLEMENTED, "Subqueries not implemented by TimeSten"); 62 } 63 64 } 65 | Popular Tags |