1 32 33 package com.mockobjects.eziba.sql; 34 import java.sql.SQLException ;public class Statement 35 implements java.sql.Statement 36 { 37 protected final Connection connection; 38 protected final String sql; 39 40 Statement(Connection p_connection, String p_sql) 41 { 42 connection = p_connection; 43 sql = p_sql; 44 } 45 46 public void close() 47 { 48 } 50 51 public java.sql.Connection getConnection() 52 { 53 return connection; 54 } 55 56 59 60 61 public void addBatch(String sql) 62 { 63 throw new NotImplementedException(); 64 } 65 66 public void cancel() 67 { 68 throw new NotImplementedException(); 69 } 70 71 public void clearBatch() 72 { 73 throw new NotImplementedException(); 74 } 75 76 public void clearWarnings() 77 { 78 throw new NotImplementedException(); 79 } 80 81 public boolean execute(String sql) 82 throws SQLException 83 { 84 throw new NotImplementedException(); 85 } 86 87 public int[] executeBatch() 88 { 89 throw new NotImplementedException(); 90 } 91 92 public java.sql.ResultSet executeQuery(String sql) 93 { 94 throw new NotImplementedException(); 95 } 96 97 public int executeUpdate(String sql) 98 { 99 throw new NotImplementedException(); 100 } 101 102 public int getFetchDirection() 103 { 104 throw new NotImplementedException(); 105 } 106 107 public int getFetchSize() 108 { 109 throw new NotImplementedException(); 110 } 111 112 public int getMaxFieldSize() 113 { 114 throw new NotImplementedException(); 115 } 116 117 public int getMaxRows() 118 { 119 throw new NotImplementedException(); 120 } 121 122 public boolean getMoreResults() 123 { 124 throw new NotImplementedException(); 125 } 126 127 public int getQueryTimeout() 128 { 129 throw new NotImplementedException(); 130 } 131 132 public java.sql.ResultSet getResultSet() 133 { 134 throw new NotImplementedException(); 135 } 136 137 public int getResultSetConcurrency() 138 { 139 throw new NotImplementedException(); 140 } 141 142 public int getResultSetType() 143 { 144 throw new NotImplementedException(); 145 } 146 147 public int getUpdateCount() 148 { 149 throw new NotImplementedException(); 150 } 151 152 public java.sql.SQLWarning getWarnings() 153 { 154 throw new NotImplementedException(); 155 } 156 157 public void setCursorName(String name) 158 { 159 throw new NotImplementedException(); 160 } 161 162 public void setEscapeProcessing(boolean enable) 163 { 164 throw new NotImplementedException(); 165 } 166 167 public void setFetchDirection(int direction) 168 { 169 throw new NotImplementedException(); 170 } 171 172 public void setFetchSize(int rows) 173 { 174 throw new NotImplementedException(); 175 } 176 177 public void setMaxFieldSize(int max) 178 { 179 throw new NotImplementedException(); 180 } 181 182 public void setMaxRows(int max) 183 { 184 throw new NotImplementedException(); 185 } 186 187 public void setQueryTimeout(int seconds) 188 { 189 throw new NotImplementedException(); 190 } 191 } | Popular Tags |