1 package com.internetcds.jdbc.tds; 33 34 import java.sql.*; 35 import java.net.URL ; 36 import java.math.BigDecimal ; 37 import java.io.InputStream ; 38 import java.io.Reader ; 39 import java.util.Calendar ; 40 import java.util.Map ; 41 42 public class CallableStatement_2_0 43 extends com.internetcds.jdbc.tds.CallableStatement_base 44 implements java.sql.CallableStatement 45 { 46 public static final String cvsVersion = "$Id: CallableStatement_2_0.java,v 1.1 2006/06/23 10:39:04 sinisa Exp $"; 47 48 49 public CallableStatement_2_0( 50 java.sql.Connection conn_, 51 Tds tds_, 52 String sql) 53 throws java.sql.SQLException 54 { 55 super(conn_, tds_, sql); 56 } 57 58 59 70 public Blob getBlob (int i) throws SQLException 71 { 72 NotImplemented(); 73 return null; 74 } 75 76 88 public Clob getClob (int i) throws SQLException 89 { 90 NotImplemented(); 91 return null; 92 } 93 94 95 112 public Object getObject (int i, java.util.Map map) throws SQLException 113 { 114 NotImplemented(); 115 return null; 116 } 117 118 119 131 public Ref getRef (int i) throws SQLException 132 { 133 NotImplemented(); 134 return null; 135 } 136 137 138 150 public Array getArray (int i) throws SQLException 151 { 152 NotImplemented(); 153 return null; 154 } 155 156 157 public void setClob (int i, java.sql.Clob x) throws java.sql.SQLException 158 { 159 NotImplemented(); 161 } 162 163 public void addBatch() throws java.sql.SQLException 164 { 165 NotImplemented(); 167 } 168 169 public void setBlob (int i, java.sql.Blob x) throws java.sql.SQLException 170 { 171 NotImplemented(); 173 } 174 175 public void setArray (int i, java.sql.Array x) throws java.sql.SQLException 176 { 177 NotImplemented(); 179 } 180 181 182 public void setRef (int i, java.sql.Ref x) throws java.sql.SQLException 183 { 184 NotImplemented(); 186 } 187 188 189 public void setCharacterStream(int parameterIndex, 190 java.io.Reader reader, 191 int length) throws java.sql.SQLException 192 { 193 NotImplemented(); 195 } 196 197 public java.sql.ResultSetMetaData getMetaData() throws java.sql.SQLException 198 { 199 NotImplemented(); 201 return null; 202 } 203 public void setNull (int paramIndex, int sqlType, String typeName) 204 throws java.sql.SQLException 205 { 206 NotImplemented(); 208 } 209 210 public void setTimestamp(int parameterIndex, java.sql.Timestamp x, java.util.Calendar cal) 211 throws java.sql.SQLException 212 { 213 NotImplemented(); 215 } 216 217 public void setDate(int parameterIndex, java.sql.Date x, java.util.Calendar cal) 218 throws java.sql.SQLException 219 { 220 NotImplemented(); 222 } 223 224 public void setTime(int parameterIndex, java.sql.Time x, java.util.Calendar cal) 225 throws java.sql.SQLException 226 { 227 NotImplemented(); 228 } 229 230 231 235 public void setURL(int current, URL url) throws SQLException { 236 throw new UnsupportedOperationException ("Statement.getMoreResults(int) unsupported"); 237 } 238 239 public void setURL(String current, URL url) throws SQLException { 240 throw new UnsupportedOperationException ("Statement.getMoreResults(int) unsupported"); 241 } 242 243 public boolean getMoreResults(int current) throws SQLException { 244 throw new UnsupportedOperationException ("Statement.getMoreResults(int) unsupported"); 245 } 246 247 public ResultSet getGeneratedKeys() throws SQLException { 248 throw new UnsupportedOperationException ("Statement.getGeneratedKeys() unsupported"); 249 } 250 251 public int executeUpdate(String sql, int autoGeneratedKeys) throws SQLException { 252 throw new UnsupportedOperationException ("Statement.executeUpdate(String,int) unsupported"); 253 } 254 255 public int executeUpdate(String sql, int[] columnIndexes) throws SQLException { 256 throw new UnsupportedOperationException ("Statement.executeUpdate(String,int[]) unsupported"); 257 } 258 259 public int executeUpdate(String sql, String [] columnNames) throws SQLException { 260 throw new UnsupportedOperationException ("Statement.executeUpdate(String,String[]) unsupported"); 261 } 262 263 public boolean execute(String sql, int autoGeneratedKeys) throws SQLException { 264 throw new UnsupportedOperationException ("Statement.execute(String,int) unsupported"); 265 } 266 267 public boolean execute(String sql, int[] columnIndexes) throws SQLException { 268 throw new UnsupportedOperationException ("Statement.execute(String,int[]) unsupported"); 269 } 270 271 public boolean execute(String sql, String [] columnNames) throws SQLException { 272 throw new UnsupportedOperationException ("Statement.execute(String,String[]) unsupported"); 273 } 274 275 public int getResultSetHoldability() throws SQLException { 276 throw new UnsupportedOperationException ("Statement.getResultSetHoldability() unsupported"); 277 } 278 279 public java.sql.ParameterMetaData getParameterMetaData() throws SQLException { 280 throw new UnsupportedOperationException ("Statement.getParameterMetaData() unsupported"); 281 } 282 283 public void registerOutParameter(String str,int x) throws SQLException { 284 throw new UnsupportedOperationException ("Statement.getParameterMetaData() unsupported"); 285 } 286 287 public void registerOutParameter(String str,int x, int y) throws SQLException { 288 throw new UnsupportedOperationException ("Statement.getParameterMetaData() unsupported"); 289 } 290 291 public void registerOutParameter(String str1,String str2) throws SQLException { 292 throw new UnsupportedOperationException ("Statement.getParameterMetaData() unsupported"); 293 } 294 public void registerOutParameter(String str1,int x,String str2) throws SQLException { 295 throw new UnsupportedOperationException ("Statement.getParameterMetaData() unsupported"); 296 } 297 298 public URL getURL(int url) throws SQLException { 299 throw new UnsupportedOperationException ("Statement.getMoreResults(int) unsupported"); 300 } 301 302 public void setNull(String column, int url) throws SQLException { 303 throw new UnsupportedOperationException ("Statement.getMoreResults(int) setNull"); 304 } 305 306 public void setBoolean(String str,boolean b) throws SQLException { 307 throw new UnsupportedOperationException ("Statement.setBoolean(int) setNull"); 308 } 309 310 public void setByte(String str,byte b) throws SQLException { 311 throw new UnsupportedOperationException ("Statement.setByte(int) setNull"); 312 } 313 314 315 public void setShort(String str,short b) throws SQLException { 316 throw new UnsupportedOperationException ("Statement.setByte(int) setNull"); 317 } 318 319 320 public void setInt(String str,int b) throws SQLException { 321 throw new UnsupportedOperationException ("Statement.setByte(int) setNull"); 322 } 323 324 325 public void setLong(String str,long b) throws SQLException { 326 throw new UnsupportedOperationException ("Statement.setByte(int) setNull"); 327 } 328 329 330 public void setFloat(String str,float b) throws SQLException { 331 throw new UnsupportedOperationException ("Statement.setByte(int) setNull"); 332 } 333 334 335 public void setDouble(String str,double b) throws SQLException { 336 throw new UnsupportedOperationException ("Statement.setByte(int) setNull"); 337 } 338 339 340 public void setBigDecimal(String str,BigDecimal b) throws SQLException { 341 throw new UnsupportedOperationException ("Statement.setByte(int) setNull"); 342 } 343 344 345 public void setString(String str,String b) throws SQLException { 346 throw new UnsupportedOperationException ("Statement.setByte(int) setNull"); 347 } 348 349 public void setBytes(String str,byte[] b) throws SQLException { 350 throw new UnsupportedOperationException ("Statement.setByte(int) setNull"); 351 } 352 353 public void setDate(String str,Date b) throws SQLException { 354 throw new UnsupportedOperationException ("Statement.setByte(int) setNull"); 355 } 356 357 public void setTime(String str,Time b) throws SQLException { 358 throw new UnsupportedOperationException ("Statement.setByte(int) setNull"); 359 } 360 361 public void setTimestamp(String str,Timestamp b) throws SQLException { 362 throw new UnsupportedOperationException ("Statement.setByte(int) setNull"); 363 } 364 365 public void setAsciiStream(String str,InputStream b, int x) throws SQLException { 366 throw new UnsupportedOperationException ("Statement.setByte(int) setNull"); 367 } 368 369 public void setBinaryStream(String str,InputStream b, int x) throws SQLException { 370 throw new UnsupportedOperationException ("Statement.setByte(int) setNull"); 371 } 372 373 public void setObject(String str,Object b, int x, int y) throws SQLException { 374 throw new UnsupportedOperationException ("Statement.setByte(int) setNull"); 375 } 376 377 public void setObject(String str,Object b, int x) throws SQLException { 378 throw new UnsupportedOperationException ("Statement.setByte(int) setNull"); 379 } 380 381 public void setObject(String str,Object b) throws SQLException { 382 throw new UnsupportedOperationException ("Statement.setByte(int) setNull"); 383 } 384 385 public void setCharacterStream(String str,Reader b, int x) throws SQLException { 386 throw new UnsupportedOperationException ("Statement.setByte(int) setNull"); 387 } 388 389 public void setDate(String str,Date b, Calendar cal) throws SQLException { 390 throw new UnsupportedOperationException ("Statement.setByte(int) setNull"); 391 } 392 393 public void setTime(String str,Time b, Calendar cal) throws SQLException { 394 throw new UnsupportedOperationException ("Statement.setByte(int) setNull"); 395 } 396 397 public void setTimestamp(String str,Timestamp b, Calendar cal) throws SQLException { 398 throw new UnsupportedOperationException ("Statement.setByte(int) setNull"); 399 } 400 401 public void setNull(String str,int b, String str2) throws SQLException { 402 throw new UnsupportedOperationException ("Statement.setByte(int) setNull"); 403 } 404 405 public String getString(String str) throws SQLException { 406 throw new UnsupportedOperationException ("Statement.setByte(int) setNull"); 407 } 408 409 public boolean getBoolean(String str) throws SQLException { 410 throw new UnsupportedOperationException ("Statement.setByte(int) setNull"); 411 } 412 413 public byte getByte(String str) throws SQLException { 414 throw new UnsupportedOperationException ("Statement.setByte(int) setNull"); 415 } 416 417 public short getShort(String str) throws SQLException { 418 throw new UnsupportedOperationException ("Statement.setByte(int) setNull"); 419 } 420 421 public int getInt(String str) throws SQLException { 422 throw new UnsupportedOperationException ("Statement.setByte(int) setNull"); 423 } 424 425 public long getLong(String str) throws SQLException { 426 throw new UnsupportedOperationException ("Statement.setByte(int) setNull"); 427 } 428 429 public float getFloat(String str) throws SQLException { 430 throw new UnsupportedOperationException ("Statement.setByte(int) setNull"); 431 } 432 433 public double getDouble(String str) throws SQLException { 434 throw new UnsupportedOperationException ("Statement.setByte(int) setNull"); 435 } 436 437 public byte[] getBytes(String str) throws SQLException { 438 throw new UnsupportedOperationException ("Statement.setByte(int) setNull"); 439 } 440 441 public Date getDate(String str) throws SQLException { 442 throw new UnsupportedOperationException ("Statement.setByte(int) setNull"); 443 } 444 445 public Time getTime(String str) throws SQLException { 446 throw new UnsupportedOperationException ("Statement.setByte(int) setNull"); 447 } 448 449 public Timestamp getTimestamp(String str) throws SQLException { 450 throw new UnsupportedOperationException ("Statement.setByte(int) setNull"); 451 } 452 453 public Object getObject(String str) throws SQLException { 454 throw new UnsupportedOperationException ("Statement.setByte(int) setNull"); 455 } 456 457 public BigDecimal getBigDecimal(String str) throws SQLException { 458 throw new UnsupportedOperationException ("Statement.setByte(int) setNull"); 459 } 460 461 public Object getObject(String str, Map m) throws SQLException { 462 throw new UnsupportedOperationException ("Statement.setByte(int) setNull"); 463 } 464 465 public Ref getRef(String str) throws SQLException { 466 throw new UnsupportedOperationException ("Statement.setByte(int) setNull"); 467 } 468 469 470 public Blob getBlob(String str) throws SQLException { 471 throw new UnsupportedOperationException ("Statement.setByte(int) setNull"); 472 } 473 474 public Clob getClob(String str) throws SQLException { 475 throw new UnsupportedOperationException ("Statement.setByte(int) setNull"); 476 } 477 478 public Array getArray(String str) throws SQLException { 479 throw new UnsupportedOperationException ("Statement.setByte(int) setNull"); 480 } 481 482 483 public Date getDate(String str, Calendar c) throws SQLException { 484 throw new UnsupportedOperationException ("Statement.setByte(int) setNull"); 485 } 486 487 public Time getTime(String str, Calendar m) throws SQLException { 488 throw new UnsupportedOperationException ("Statement.setByte(int) setNull"); 489 } 490 491 public Timestamp getTimestamp(String str, Calendar m) throws SQLException { 492 throw new UnsupportedOperationException ("Statement.setByte(int) setNull"); 493 } 494 495 public URL getURL(String str) throws SQLException { 496 throw new UnsupportedOperationException ("Statement.setByte(int) setNull"); 497 } 498 499 500 501 502 503 504 505 } 506 | Popular Tags |