1 28 package com.caucho.db.jdbc; 29 30 import java.sql.SQLException ; 31 32 35 public class NullResultSet extends AbstractResultSet { 36 public java.sql.Statement getStatement() 37 throws SQLException 38 { 39 return null; 40 } 41 42 public java.sql.ResultSetMetaData getMetaData() 43 throws SQLException 44 { 45 return null; 46 } 47 48 public boolean next() 49 throws SQLException 50 { 51 return false; 52 } 53 54 public boolean wasNull() 55 throws SQLException 56 { 57 return false; 58 } 59 60 public int findColumn(String columnName) 61 throws SQLException 62 { 63 return 0; 64 } 65 66 public String getString(int columnIndex) 67 throws SQLException 68 { 69 return null; 70 } 71 } 72 | Popular Tags |