1 package org.apache.torque.adapter; 2 3 21 22 import java.sql.Connection ; 23 import java.sql.SQLException ; 24 25 33 public class DBAxion extends AbstractDBAdapter 34 { 35 38 private static final long serialVersionUID = -5982548040625874572L; 39 40 43 protected DBAxion() 44 { 45 } 46 47 53 public String toUpperCase(String in) 54 { 55 return in; 56 } 57 58 64 public String ignoreCase(String in) 65 { 66 return in; 67 } 68 69 72 public String getIDMethodType() 73 { 74 return NO_ID_METHOD; 75 } 76 77 80 public String getIDMethodSQL(Object obj) 81 { 82 return null; 83 } 84 85 92 public void lockTable(Connection con, String table) throws SQLException 93 { 94 } 95 96 103 public void unlockTable(Connection con, String table) throws SQLException 104 { 105 } 106 } 107 | Popular Tags |