Java Doc for AbstractReadOnlyResultSet.java in  » Rule-Engine » Mandarax » org » mandarax » jdbc » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » Rule Engine » Mandarax » org.mandarax.jdbc 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   org.mandarax.jdbc.AbstractReadOnlyResultSet

All known Subclasses:   org.mandarax.jdbc.server.ResultSetImpl,  org.mandarax.jdbc.client.ResultSetImpl,  org.mandarax.jdbc.StaticResultSet,
AbstractReadOnlyResultSet
abstract public class AbstractReadOnlyResultSet implements ResultSet(Code)
A simple read only result set implementation. All update related features are not supported - a UnsupportedFeatureException will be thrown.
author:
   Jens Dietrich
version:
   3.3.2 <29 December 2004>
since:
   3.0



Constructor Summary
public  AbstractReadOnlyResultSet()
     Constructor.

Method Summary
public  voidcancelRowUpdates()
    
public  voidclearWarnings()
     Clear the warnings.
public  voiddeleteRow()
     Delete a row.
public  ArraygetArray(int i)
    
public  ArraygetArray(String colName)
    
public  InputStreamgetAsciiStream(int columnIndex)
     Retrieves the value of the designated column in the current row of this ResultSet object as a stream of ASCII characters.
public  InputStreamgetAsciiStream(String columnName)
    
public  BigDecimalgetBigDecimal(int columnIndex, int scale)
     Retrieves the value of the designated column in the current row of this ResultSet object as a java.sql.BigDecimal in the Java programming language.
public  BigDecimalgetBigDecimal(String columnName, int scale)
     Retrieves the value of the designated column in the current row of this ResultSet object as a java.math.BigDecimal in the Java programming language.
public  BigDecimalgetBigDecimal(int columnIndex)
    
public  BigDecimalgetBigDecimal(String columnName)
    
public  InputStreamgetBinaryStream(int columnIndex)
     Retrieves the value of the designated column in the current row of this ResultSet object as a binary stream of uninterpreted bytes.
public  InputStreamgetBinaryStream(String columnName)
    
public  BlobgetBlob(int i)
    
public  BlobgetBlob(String colName)
    
public  booleangetBoolean(int columnIndex)
     Retrieves the value of the designated column in the current row of this ResultSet object as a boolean in the Java programming language.
public  booleangetBoolean(String columnName)
     Retrieves the value of the designated column in the current row of this ResultSet object as a boolean in the Java programming language.
public  bytegetByte(int columnIndex)
     Retrieves the value of the designated column in the current row of this ResultSet object as a byte in the Java programming language.
public  bytegetByte(String columnName)
     Retrieves the value of the designated column in the current row of this ResultSet object as a byte in the Java programming language.
public  byte[]getBytes(int columnIndex)
     Retrieves the value of the designated column in the current row of this ResultSet object as a byte array in the Java programming language.
public  byte[]getBytes(String columnName)
    
public  ReadergetCharacterStream(int columnIndex)
    
public  ReadergetCharacterStream(String columnName)
    
public  ClobgetClob(int i)
    
public  ClobgetClob(String colName)
    
public  intgetConcurrency()
    
public  StringgetCursorName()
     Get the cursor name.
public  java.sql.DategetDate(int columnIndex)
     Retrieves the value of the designated column in the current row of this ResultSet object as a java.sql.Date object in the Java programming language.
public  java.sql.DategetDate(String columnName)
    
public  java.sql.DategetDate(int columnIndex, Calendar cal)
    
public  java.sql.DategetDate(String columnName, Calendar cal)
    
public  doublegetDouble(int columnIndex)
     Retrieves the value of the designated column in the current row of this ResultSet object as a double in the Java programming language.
public  doublegetDouble(String columnName)
     Retrieves the value of the designated column in the current row of this ResultSet object as a double in the Java programming language.
public  intgetFetchDirection()
     Get the fetch direction.
public  intgetFetchSize()
     Get the fetch size - currently always returns 1.
public  floatgetFloat(int columnIndex)
     Retrieves the value of the designated column in the current row of this ResultSet object as a float in the Java programming language.
public  floatgetFloat(String columnName)
     Retrieves the value of the designated column in the current row of this ResultSet object as a float in the Java programming language.
public  intgetInt(int columnIndex)
     Retrieves the value of the designated column in the current row of this ResultSet object as an int in the Java programming language.
public  intgetInt(String columnName)
     Retrieves the value of the designated column in the current row of this ResultSet object as an int in the Java programming language.
public  longgetLong(int columnIndex)
     Retrieves the value of the designated column in the current row of this ResultSet object as a long in the Java programming language.
public  longgetLong(String columnName)
     Retrieves the value of the designated column in the current row of this ResultSet object as a long in the Java programming language.
public  ObjectgetObject(int i, Map map)
     Get an object from the current result.
public  ObjectgetObject(String colName, Map map)
     Get an object from the current result.
public  RefgetRef(int i)
    
public  RefgetRef(String colName)
    
public  shortgetShort(int columnIndex)
     Retrieves the value of the designated column in the current row of this ResultSet object as a short in the Java programming language.
public  shortgetShort(String columnName)
     Retrieves the value of the designated column in the current row of this ResultSet object as a short in the Java programming language.
public  StringgetString(int columnIndex)
     Retrieves the value of the designated column in the current row of this ResultSet object as a String in the Java programming language.
public  StringgetString(String columnName)
     Retrieves the value of the designated column in the current row of this ResultSet object as a String in the Java programming language.
public  TimegetTime(int columnIndex)
     Retrieves the value of the designated column in the current row of this ResultSet object as a java.sql.Time object in the Java programming language.
public  TimegetTime(String columnName)
    
public  TimegetTime(int columnIndex, Calendar cal)
    
public  TimegetTime(String columnName, Calendar cal)
    
public  TimestampgetTimestamp(int columnIndex)
     Retrieves the value of the designated column in the current row of this ResultSet object as a java.sql.Timestamp object in the Java programming language.
public  TimestampgetTimestamp(String columnName)
    
public  TimestampgetTimestamp(int columnIndex, Calendar cal)
    
public  TimestampgetTimestamp(String columnName, Calendar cal)
    
public  intgetType()
    
public  URLgetURL(int columnIndex)
    
public  URLgetURL(String columnName)
    
public  InputStreamgetUnicodeStream(int columnIndex)
     Retrieves the value of the designated column in the current row of this ResultSet object as as a stream of two-byte Unicode characters.
public  InputStreamgetUnicodeStream(String columnName)
    
public  SQLWarninggetWarnings()
     Get the warnings.
public  voidinsertRow()
     Insert a row.
public  voidmoveToCurrentRow()
    
public  voidmoveToInsertRow()
    
public  voidrefreshRow()
     Refresh a row.
public  booleanrowDeleted()
    
public  booleanrowInserted()
    
public  booleanrowUpdated()
    
public  voidsetFetchDirection(int direction)
    
public  voidsetFetchSize(int rows)
    
public  voidupdateArray(int columnIndex, Array x)
    
public  voidupdateArray(String columnName, Array x)
    
public  voidupdateAsciiStream(int columnIndex, InputStream x, int length)
    
public  voidupdateAsciiStream(String columnName, InputStream x, int length)
     Updates a column.
public  voidupdateBigDecimal(int columnIndex, BigDecimal x)
    
public  voidupdateBigDecimal(String columnName, BigDecimal x)
     Updates a column.
public  voidupdateBinaryStream(int columnIndex, InputStream x, int length)
    
public  voidupdateBinaryStream(String columnName, InputStream x, int length)
     Updates a column.
public  voidupdateBlob(int columnIndex, Blob x)
    
public  voidupdateBlob(String columnName, Blob x)
    
public  voidupdateBoolean(int columnIndex, boolean x)
    
public  voidupdateBoolean(String columnName, boolean x)
    
public  voidupdateByte(int columnIndex, byte x)
    
public  voidupdateByte(String columnName, byte x)
    
public  voidupdateBytes(int columnIndex, byte[] x)
    
public  voidupdateBytes(String columnName, byte[] x)
     Updates a column.
public  voidupdateCharacterStream(int columnIndex, Reader x, int length)
    
public  voidupdateCharacterStream(String columnName, Reader reader, int length)
     Updates a column.
public  voidupdateClob(int columnIndex, Clob x)
    
public  voidupdateClob(String columnName, Clob x)
    
public  voidupdateDate(int columnIndex, java.sql.Date x)
    
public  voidupdateDate(String columnName, java.sql.Date x)
     Updates a column.
public  voidupdateDouble(int columnIndex, double x)
    
public  voidupdateDouble(String columnName, double x)
     Updates a column.
public  voidupdateFloat(int columnIndex, float x)
    
public  voidupdateFloat(String columnName, float x)
     Updates a column.
public  voidupdateInt(int columnIndex, int x)
    
public  voidupdateInt(String columnName, int x)
     Updates a column.
public  voidupdateLong(int columnIndex, long x)
    
public  voidupdateLong(String columnName, long x)
     Updates a column.
public  voidupdateNull(int columnIndex)
    
public  voidupdateNull(String columnName)
    
public  voidupdateObject(int columnIndex, Object x, int scale)
    
public  voidupdateObject(int columnIndex, Object x)
    
public  voidupdateObject(String columnName, Object x, int scale)
     Updates a column.
public  voidupdateObject(String columnName, Object x)
     Updates a column.
public  voidupdateRef(int columnIndex, Ref x)
    
public  voidupdateRef(String columnName, Ref x)
    
public  voidupdateRow()
     Update a row.
public  voidupdateShort(int columnIndex, short x)
    
public  voidupdateShort(String columnName, short x)
     Updates a column.
public  voidupdateString(int columnIndex, String x)
    
public  voidupdateString(String columnName, String x)
     Updates a column.
public  voidupdateTime(int columnIndex, Time x)
    
public  voidupdateTime(String columnName, Time x)
     Updates a column.
public  voidupdateTimestamp(int columnIndex, Timestamp x)
    
public  voidupdateTimestamp(String columnName, Timestamp x)
     Updates a column.
public  booleanwasNull()
     Reports whether the last column read had a value of SQL NULL.


Constructor Detail
AbstractReadOnlyResultSet
public AbstractReadOnlyResultSet()(Code)
Constructor.




Method Detail
cancelRowUpdates
public void cancelRowUpdates() throws SQLException(Code)

throws:
  java.sql.SQLException -
See Also:   java.sql.ResultSet.cancelRowUpdates



clearWarnings
public void clearWarnings() throws SQLException(Code)
Clear the warnings.
throws:
  java.sql.SQLException -
See Also:   java.sql.ResultSet.clearWarnings



deleteRow
public void deleteRow() throws SQLException(Code)
Delete a row. This driver is read only, calling this method will always result in an exception.
throws:
  java.sql.SQLException -
See Also:   java.sql.ResultSet.deleteRow



getArray
public Array getArray(int i) throws SQLException(Code)

Parameters:
  i - java.sql.Array
throws:
  java.sql.SQLException -
See Also:   java.sql.ResultSet.getArray(int)



getArray
public Array getArray(String colName) throws SQLException(Code)

Parameters:
  colName - java.sql.Array
throws:
  java.sql.SQLException -
See Also:   java.sql.ResultSet.getArray(java.lang.String)



getAsciiStream
public InputStream getAsciiStream(int columnIndex) throws SQLException(Code)
Retrieves the value of the designated column in the current row of this ResultSet object as a stream of ASCII characters.
Parameters:
  columnIndex - java.io.InputStream
throws:
  java.sql.SQLException -



getAsciiStream
public InputStream getAsciiStream(String columnName) throws SQLException(Code)

Parameters:
  columnName - java.io.InputStream
throws:
  java.sql.SQLException -
See Also:   java.sql.ResultSet.getAsciiStream(java.lang.String)



getBigDecimal
public BigDecimal getBigDecimal(int columnIndex, int scale) throws SQLException(Code)
Retrieves the value of the designated column in the current row of this ResultSet object as a java.sql.BigDecimal in the Java programming language.
Parameters:
  columnIndex -
Parameters:
  scale - java.math.BigDecimal
throws:
  java.sql.SQLException -



getBigDecimal
public BigDecimal getBigDecimal(String columnName, int scale) throws SQLException(Code)
Retrieves the value of the designated column in the current row of this ResultSet object as a java.math.BigDecimal in the Java programming language.
Parameters:
  columnName -
Parameters:
  scale - java.math.BigDecimal
throws:
  java.sql.SQLException -



getBigDecimal
public BigDecimal getBigDecimal(int columnIndex) throws SQLException(Code)

Parameters:
  columnIndex - java.math.BigDecimal
throws:
  java.sql.SQLException -
See Also:   java.sql.ResultSet.getBigDecimal(int)



getBigDecimal
public BigDecimal getBigDecimal(String columnName) throws SQLException(Code)

Parameters:
  columnName - java.math.BigDecimal
throws:
  java.sql.SQLException -
See Also:   java.sql.ResultSet.getBigDecimal(java.lang.String)



getBinaryStream
public InputStream getBinaryStream(int columnIndex) throws SQLException(Code)
Retrieves the value of the designated column in the current row of this ResultSet object as a binary stream of uninterpreted bytes.
Parameters:
  columnIndex - java.io.InputStream
throws:
  java.sql.SQLException -
See Also:   java.sql.ResultSet.getBinaryStream(int)



getBinaryStream
public InputStream getBinaryStream(String columnName) throws SQLException(Code)

Parameters:
  columnName - java.io.InputStream
throws:
  java.sql.SQLException -
See Also:   java.sql.ResultSet.getBinaryStream(java.lang.String)



getBlob
public Blob getBlob(int i) throws SQLException(Code)

Parameters:
  i - java.sql.Blob
throws:
  java.sql.SQLException -
See Also:   java.sql.ResultSet.getBlob(int)



getBlob
public Blob getBlob(String colName) throws SQLException(Code)

Parameters:
  colName - java.sql.Blob
throws:
  java.sql.SQLException -
See Also:   java.sql.ResultSet.getBlob(java.lang.String)



getBoolean
public boolean getBoolean(int columnIndex) throws SQLException(Code)
Retrieves the value of the designated column in the current row of this ResultSet object as a boolean in the Java programming language.
Parameters:
  columnIndex - boolean
throws:
  java.sql.SQLException -



getBoolean
public boolean getBoolean(String columnName) throws SQLException(Code)
Retrieves the value of the designated column in the current row of this ResultSet object as a boolean in the Java programming language.
Parameters:
  columnName - boolean
throws:
  java.sql.SQLException -



getByte
public byte getByte(int columnIndex) throws SQLException(Code)
Retrieves the value of the designated column in the current row of this ResultSet object as a byte in the Java programming language.
Parameters:
  columnIndex - byte
throws:
  java.sql.SQLException -



getByte
public byte getByte(String columnName) throws SQLException(Code)
Retrieves the value of the designated column in the current row of this ResultSet object as a byte in the Java programming language.
Parameters:
  columnName - byte
throws:
  java.sql.SQLException -



getBytes
public byte[] getBytes(int columnIndex) throws SQLException(Code)
Retrieves the value of the designated column in the current row of this ResultSet object as a byte array in the Java programming language. The bytes represent the raw values returned by the driver.
Parameters:
  columnIndex - byte[]
throws:
  java.sql.SQLException -



getBytes
public byte[] getBytes(String columnName) throws SQLException(Code)

Parameters:
  columnName - byte[]
throws:
  java.sql.SQLException -
See Also:   java.sql.ResultSet.getBytes(java.lang.String)



getCharacterStream
public Reader getCharacterStream(int columnIndex) throws SQLException(Code)

Parameters:
  columnIndex - java.io.Reader
throws:
  java.sql.SQLException -
See Also:   java.sql.ResultSet.getCharacterStream(int)



getCharacterStream
public Reader getCharacterStream(String columnName) throws SQLException(Code)

Parameters:
  columnName - java.io.Reader
throws:
  java.sql.SQLException -
See Also:   java.sql.ResultSet.getCharacterStream(java.lang.String)



getClob
public Clob getClob(int i) throws SQLException(Code)

Parameters:
  i - java.sql.Clob
throws:
  java.sql.SQLException -
See Also:   java.sql.ResultSet.getClob(int)



getClob
public Clob getClob(String colName) throws SQLException(Code)

Parameters:
  colName - java.sql.Clob
throws:
  java.sql.SQLException -
See Also:   java.sql.ResultSet.getClob(java.lang.String)



getConcurrency
public int getConcurrency() throws SQLException(Code)
int
throws:
  java.sql.SQLException -
See Also:   java.sql.ResultSet.getConcurrency



getCursorName
public String getCursorName() throws SQLException(Code)
Get the cursor name. java.lang.String
throws:
  java.sql.SQLException -
See Also:   java.sql.ResultSet.getCursorName



getDate
public java.sql.Date getDate(int columnIndex) throws SQLException(Code)
Retrieves the value of the designated column in the current row of this ResultSet object as a java.sql.Date object in the Java programming language.
Parameters:
  columnIndex - java.sql.Date
throws:
  java.sql.SQLException -



getDate
public java.sql.Date getDate(String columnName) throws SQLException(Code)

Parameters:
  columnName - java.sql.Date
throws:
  java.sql.SQLException -
See Also:   java.sql.ResultSet.getDate(java.lang.String)



getDate
public java.sql.Date getDate(int columnIndex, Calendar cal) throws SQLException(Code)

Parameters:
  columnIndex -
Parameters:
  cal - java.sql.Date
throws:
  java.sql.SQLException -
See Also:   java.sql.ResultSet.getDate(intjava.util.Calendar)



getDate
public java.sql.Date getDate(String columnName, Calendar cal) throws SQLException(Code)

Parameters:
  columnName -
Parameters:
  cal - java.sql.Date
throws:
  java.sql.SQLException -
See Also:   java.sql.ResultSet.getDate(java.lang.Stringjava.util.Calendar)



getDouble
public double getDouble(int columnIndex) throws SQLException(Code)
Retrieves the value of the designated column in the current row of this ResultSet object as a double in the Java programming language.
Parameters:
  columnIndex - double
throws:
  java.sql.SQLException -



getDouble
public double getDouble(String columnName) throws SQLException(Code)
Retrieves the value of the designated column in the current row of this ResultSet object as a double in the Java programming language.
Parameters:
  columnName - double
throws:
  java.sql.SQLException -



getFetchDirection
public int getFetchDirection() throws SQLException(Code)
Get the fetch direction. int
throws:
  java.sql.SQLException -
See Also:   java.sql.ResultSet.getFetchDirection



getFetchSize
public int getFetchSize() throws SQLException(Code)
Get the fetch size - currently always returns 1. int
throws:
  java.sql.SQLException -
See Also:   java.sql.ResultSet.getFetchSize



getFloat
public float getFloat(int columnIndex) throws SQLException(Code)
Retrieves the value of the designated column in the current row of this ResultSet object as a float in the Java programming language.
Parameters:
  columnIndex - float
throws:
  java.sql.SQLException -



getFloat
public float getFloat(String columnName) throws SQLException(Code)
Retrieves the value of the designated column in the current row of this ResultSet object as a float in the Java programming language.
Parameters:
  columnName - float
throws:
  java.sql.SQLException -



getInt
public int getInt(int columnIndex) throws SQLException(Code)
Retrieves the value of the designated column in the current row of this ResultSet object as an int in the Java programming language.
Parameters:
  columnIndex - int
throws:
  java.sql.SQLException -



getInt
public int getInt(String columnName) throws SQLException(Code)
Retrieves the value of the designated column in the current row of this ResultSet object as an int in the Java programming language.
Parameters:
  columnName - int
throws:
  java.sql.SQLException -



getLong
public long getLong(int columnIndex) throws SQLException(Code)
Retrieves the value of the designated column in the current row of this ResultSet object as a long in the Java programming language.
Parameters:
  columnIndex - long
throws:
  java.sql.SQLException -



getLong
public long getLong(String columnName) throws SQLException(Code)
Retrieves the value of the designated column in the current row of this ResultSet object as a long in the Java programming language.
Parameters:
  columnName - long
throws:
  java.sql.SQLException -



getObject
public Object getObject(int i, Map map) throws SQLException(Code)
Get an object from the current result. Type mapping is not (yet) supported (will be ignored).
Parameters:
  i -
Parameters:
  map - java.lang.Object
throws:
  java.sql.SQLException -
See Also:   java.sql.ResultSet.getObject(intjava.util.Map)



getObject
public Object getObject(String colName, Map map) throws SQLException(Code)
Get an object from the current result. Type mapping is not (yet) supported (will be ignored).
Parameters:
  colName -
Parameters:
  map - java.lang.Object
throws:
  java.sql.SQLException -
See Also:   java.sql.ResultSet.getObject(java.lang.Stringjava.util.Map)



getRef
public Ref getRef(int i) throws SQLException(Code)

Parameters:
  i - java.sql.Ref
throws:
  java.sql.SQLException -
See Also:   java.sql.ResultSet.getRef(int)



getRef
public Ref getRef(String colName) throws SQLException(Code)

Parameters:
  colName - java.sql.Ref
throws:
  java.sql.SQLException -
See Also:   java.sql.ResultSet.getRef(java.lang.String)



getShort
public short getShort(int columnIndex) throws SQLException(Code)
Retrieves the value of the designated column in the current row of this ResultSet object as a short in the Java programming language.
Parameters:
  columnIndex - short
throws:
  java.sql.SQLException -



getShort
public short getShort(String columnName) throws SQLException(Code)
Retrieves the value of the designated column in the current row of this ResultSet object as a short in the Java programming language.
Parameters:
  columnName - short
throws:
  java.sql.SQLException -



getString
public String getString(int columnIndex) throws SQLException(Code)
Retrieves the value of the designated column in the current row of this ResultSet object as a String in the Java programming language.
Parameters:
  columnIndex - java.lang.String
throws:
  java.sql.SQLException -



getString
public String getString(String columnName) throws SQLException(Code)
Retrieves the value of the designated column in the current row of this ResultSet object as a String in the Java programming language.
Parameters:
  columnName - java.lang.String
throws:
  java.sql.SQLException -
See Also:   java.sql.ResultSet.getString(java.lang.String)



getTime
public Time getTime(int columnIndex) throws SQLException(Code)
Retrieves the value of the designated column in the current row of this ResultSet object as a java.sql.Time object in the Java programming language.
Parameters:
  columnIndex - java.sql.Time
throws:
  java.sql.SQLException -



getTime
public Time getTime(String columnName) throws SQLException(Code)

Parameters:
  columnName - java.sql.Time
throws:
  java.sql.SQLException -
See Also:   java.sql.ResultSet.getTime(java.lang.String)



getTime
public Time getTime(int columnIndex, Calendar cal) throws SQLException(Code)

Parameters:
  columnIndex -
Parameters:
  cal - java.sql.Time
throws:
  java.sql.SQLException -
See Also:   java.sql.ResultSet.getTime(intjava.util.Calendar)



getTime
public Time getTime(String columnName, Calendar cal) throws SQLException(Code)

Parameters:
  columnName -
Parameters:
  cal - java.sql.Time
throws:
  java.sql.SQLException -
See Also:   java.sql.ResultSet.getTime(java.lang.Stringjava.util.Calendar)



getTimestamp
public Timestamp getTimestamp(int columnIndex) throws SQLException(Code)
Retrieves the value of the designated column in the current row of this ResultSet object as a java.sql.Timestamp object in the Java programming language.
Parameters:
  columnIndex - java.sql.Timestamp
throws:
  java.sql.SQLException -



getTimestamp
public Timestamp getTimestamp(String columnName) throws SQLException(Code)

Parameters:
  columnName - java.sql.Timestamp
throws:
  java.sql.SQLException -
See Also:   java.sql.ResultSet.getTimestamp(java.lang.String)



getTimestamp
public Timestamp getTimestamp(int columnIndex, Calendar cal) throws SQLException(Code)

Parameters:
  columnIndex -
Parameters:
  cal - java.sql.Timestamp
throws:
  java.sql.SQLException -
See Also:   java.sql.ResultSet.getTimestamp(intjava.util.Calendar)



getTimestamp
public Timestamp getTimestamp(String columnName, Calendar cal) throws SQLException(Code)

Parameters:
  columnName -
Parameters:
  cal - java.sql.Timestamp
throws:
  java.sql.SQLException -
See Also:   java.sql.ResultSet.getTimestamp(java.lang.Stringjava.util.Calendar)



getType
public int getType() throws SQLException(Code)
int
throws:
  java.sql.SQLException -
See Also:   java.sql.ResultSet.getType



getURL
public URL getURL(int columnIndex) throws SQLException(Code)

Parameters:
  columnIndex - java.net.URL
throws:
  java.sql.SQLException -
See Also:   java.sql.ResultSet.getURL(int)



getURL
public URL getURL(String columnName) throws SQLException(Code)

Parameters:
  columnName - java.net.URL
throws:
  java.sql.SQLException -
See Also:   java.sql.ResultSet.getURL(java.lang.String)



getUnicodeStream
public InputStream getUnicodeStream(int columnIndex) throws SQLException(Code)
Retrieves the value of the designated column in the current row of this ResultSet object as as a stream of two-byte Unicode characters.
Parameters:
  columnIndex - java.io.InputStream
throws:
  java.sql.SQLException -



getUnicodeStream
public InputStream getUnicodeStream(String columnName) throws SQLException(Code)

Parameters:
  columnName - java.io.InputStream
throws:
  java.sql.SQLException -
See Also:   java.sql.ResultSet.getUnicodeStream(java.lang.String)



getWarnings
public SQLWarning getWarnings() throws SQLException(Code)
Get the warnings. Not supported, return always null. java.sql.SQLWarning
throws:
  java.sql.SQLException -
See Also:   java.sql.ResultSet.getWarnings



insertRow
public void insertRow() throws SQLException(Code)
Insert a row. This driver is read only, calling this method will always result in an exception.
throws:
  java.sql.SQLException -
See Also:   java.sql.ResultSet.insertRow



moveToCurrentRow
public void moveToCurrentRow() throws SQLException(Code)

throws:
  java.sql.SQLException -
See Also:   java.sql.ResultSet.moveToCurrentRow



moveToInsertRow
public void moveToInsertRow() throws SQLException(Code)

throws:
  java.sql.SQLException -
See Also:   java.sql.ResultSet.moveToInsertRow



refreshRow
public void refreshRow() throws SQLException(Code)
Refresh a row. This method is not supported, calling this method will always result in an exception.
throws:
  java.sql.SQLException -
See Also:   java.sql.ResultSet.refreshRow



rowDeleted
public boolean rowDeleted() throws SQLException(Code)
boolean
throws:
  java.sql.SQLException -
See Also:   java.sql.ResultSet.rowDeleted



rowInserted
public boolean rowInserted() throws SQLException(Code)
boolean
throws:
  java.sql.SQLException -
See Also:   java.sql.ResultSet.rowInserted



rowUpdated
public boolean rowUpdated() throws SQLException(Code)
boolean
throws:
  java.sql.SQLException -
See Also:   java.sql.ResultSet.rowUpdated



setFetchDirection
public void setFetchDirection(int direction) throws SQLException(Code)
Set the fetch direction - currently ignored (does nothing, but does not throw an exception)
Parameters:
  direction -
throws:
  java.sql.SQLException -
See Also:   java.sql.ResultSet.setFetchDirection(int)



setFetchSize
public void setFetchSize(int rows) throws SQLException(Code)
Set the fetch size - currently ignored (does nothing, but does not throw an exception)
Parameters:
  rows -
throws:
  java.sql.SQLException -
See Also:   java.sql.ResultSet.setFetchSize(int)



updateArray
public void updateArray(int columnIndex, Array x) throws SQLException(Code)

Parameters:
  columnIndex -
Parameters:
  x -
throws:
  java.sql.SQLException -
See Also:   java.sql.ResultSet.updateArray(intjava.sql.Array)



updateArray
public void updateArray(String columnName, Array x) throws SQLException(Code)

Parameters:
  columnName -
Parameters:
  x -
throws:
  java.sql.SQLException -
See Also:   java.sql.ResultSet.updateArray(java.lang.Stringjava.sql.Array)



updateAsciiStream
public void updateAsciiStream(int columnIndex, InputStream x, int length) throws SQLException(Code)

Parameters:
  columnIndex -
Parameters:
  x -
Parameters:
  length -
throws:
  java.sql.SQLException -
See Also:   java.sql.ResultSet.updateAsciiStream(intjava.io.InputStreamint)



updateAsciiStream
public void updateAsciiStream(String columnName, InputStream x, int length) throws SQLException(Code)
Updates a column. This driver is read only, calling this method will always result in an exception.
Parameters:
  columnName -
Parameters:
  x -
Parameters:
  length -
throws:
  java.sql.SQLException -
See Also:   java.sql.ResultSet.updateAsciiStream(java.lang.Stringjava.io.InputStreamint)



updateBigDecimal
public void updateBigDecimal(int columnIndex, BigDecimal x) throws SQLException(Code)

Parameters:
  columnIndex -
Parameters:
  x -
throws:
  java.sql.SQLException -
See Also:   java.sql.ResultSet.updateBigDecimal(intjava.math.BigDecimal)



updateBigDecimal
public void updateBigDecimal(String columnName, BigDecimal x) throws SQLException(Code)
Updates a column. This driver is read only, calling this method will always result in an exception.
Parameters:
  columnName -
Parameters:
  x -
throws:
  java.sql.SQLException -
See Also:   java.sql.ResultSet.updateBigDecimal(java.lang.Stringjava.math.BigDecimal)



updateBinaryStream
public void updateBinaryStream(int columnIndex, InputStream x, int length) throws SQLException(Code)

Parameters:
  columnIndex -
Parameters:
  x -
Parameters:
  length -
throws:
  java.sql.SQLException -
See Also:   java.sql.ResultSet.updateBinaryStream(intjava.io.InputStreamint)



updateBinaryStream
public void updateBinaryStream(String columnName, InputStream x, int length) throws SQLException(Code)
Updates a column. This driver is read only, calling this method will always result in an exception.
Parameters:
  columnName -
Parameters:
  x -
Parameters:
  length -
throws:
  java.sql.SQLException -
See Also:   java.sql.ResultSet.updateBinaryStream(java.lang.Stringjava.io.InputStreamint)



updateBlob
public void updateBlob(int columnIndex, Blob x) throws SQLException(Code)

Parameters:
  columnIndex -
Parameters:
  x -
throws:
  java.sql.SQLException -
See Also:   java.sql.ResultSet.updateBlob(intjava.sql.Blob)



updateBlob
public void updateBlob(String columnName, Blob x) throws SQLException(Code)

Parameters:
  columnName -
Parameters:
  x -
throws:
  java.sql.SQLException -
See Also:   java.sql.ResultSet.updateBlob(java.lang.Stringjava.sql.Blob)



updateBoolean
public void updateBoolean(int columnIndex, boolean x) throws SQLException(Code)

Parameters:
  columnIndex -
Parameters:
  x -
throws:
  java.sql.SQLException -
See Also:   java.sql.ResultSet.updateBoolean(intboolean)



updateBoolean
public void updateBoolean(String columnName, boolean x) throws SQLException(Code)

Parameters:
  columnName -
Parameters:
  x -
throws:
  java.sql.SQLException -
See Also:   java.sql.ResultSet.updateBoolean(java.lang.Stringboolean)



updateByte
public void updateByte(int columnIndex, byte x) throws SQLException(Code)

Parameters:
  columnIndex -
Parameters:
  x -
throws:
  java.sql.SQLException -
See Also:   java.sql.ResultSet.updateByte(intbyte)



updateByte
public void updateByte(String columnName, byte x) throws SQLException(Code)

Parameters:
  columnName -
Parameters:
  x -
throws:
  java.sql.SQLException -
See Also:   java.sql.ResultSet.updateByte(java.lang.Stringbyte)



updateBytes
public void updateBytes(int columnIndex, byte[] x) throws SQLException(Code)

Parameters:
  columnIndex -
Parameters:
  x -
throws:
  java.sql.SQLException -
See Also:   java.sql.ResultSet.updateBytes(intbyte[])



updateBytes
public void updateBytes(String columnName, byte[] x) throws SQLException(Code)
Updates a column. This driver is read only, calling this method will always result in an exception.
Parameters:
  columnName -
Parameters:
  x -
throws:
  java.sql.SQLException -
See Also:   java.sql.ResultSet.updateBytes(java.lang.Stringbyte[])



updateCharacterStream
public void updateCharacterStream(int columnIndex, Reader x, int length) throws SQLException(Code)

Parameters:
  columnIndex -
Parameters:
  x -
Parameters:
  length -
throws:
  java.sql.SQLException -
See Also:   java.sql.ResultSet.updateCharacterStream(intjava.io.Readerint)



updateCharacterStream
public void updateCharacterStream(String columnName, Reader reader, int length) throws SQLException(Code)
Updates a column. This driver is read only, calling this method will always result in an exception.
Parameters:
  columnName -
Parameters:
  reader -
Parameters:
  length -
throws:
  java.sql.SQLException -
See Also:   java.sql.ResultSet.updateCharacterStream(java.lang.Stringjava.io.Readerint)



updateClob
public void updateClob(int columnIndex, Clob x) throws SQLException(Code)

Parameters:
  columnIndex -
Parameters:
  x -
throws:
  java.sql.SQLException -
See Also:   java.sql.ResultSet.updateClob(intjava.sql.Clob)



updateClob
public void updateClob(String columnName, Clob x) throws SQLException(Code)

Parameters:
  columnName -
Parameters:
  x -
throws:
  java.sql.SQLException -
See Also:   java.sql.ResultSet.updateClob(java.lang.Stringjava.sql.Clob)



updateDate
public void updateDate(int columnIndex, java.sql.Date x) throws SQLException(Code)

Parameters:
  columnIndex -
Parameters:
  x -
throws:
  java.sql.SQLException -
See Also:   java.sql.ResultSet.updateDate(intjava.sql.Date)



updateDate
public void updateDate(String columnName, java.sql.Date x) throws SQLException(Code)
Updates a column. This driver is read only, calling this method will always result in an exception.
Parameters:
  columnName -
Parameters:
  x -
throws:
  java.sql.SQLException -
See Also:   java.sql.ResultSet.updateDate(java.lang.Stringjava.sql.Date)



updateDouble
public void updateDouble(int columnIndex, double x) throws SQLException(Code)

Parameters:
  columnIndex -
Parameters:
  x -
throws:
  java.sql.SQLException -
See Also:   java.sql.ResultSet.updateDouble(intdouble)



updateDouble
public void updateDouble(String columnName, double x) throws SQLException(Code)
Updates a column. This driver is read only, calling this method will always result in an exception.
Parameters:
  columnName -
Parameters:
  x -
throws:
  java.sql.SQLException -
See Also:   java.sql.ResultSet.updateDouble(java.lang.Stringdouble)



updateFloat
public void updateFloat(int columnIndex, float x) throws SQLException(Code)

Parameters:
  columnIndex -
Parameters:
  x -
throws:
  java.sql.SQLException -
See Also:   java.sql.ResultSet.updateFloat(intfloat)



updateFloat
public void updateFloat(String columnName, float x) throws SQLException(Code)
Updates a column. This driver is read only, calling this method will always result in an exception.
Parameters:
  columnName -
Parameters:
  x -
throws:
  java.sql.SQLException -
See Also:   java.sql.ResultSet.updateFloat(java.lang.Stringfloat)



updateInt
public void updateInt(int columnIndex, int x) throws SQLException(Code)

Parameters:
  columnIndex -
Parameters:
  x -
throws:
  java.sql.SQLException -
See Also:   java.sql.ResultSet.updateInt(intint)



updateInt
public void updateInt(String columnName, int x) throws SQLException(Code)
Updates a column. This driver is read only, calling this method will always result in an exception.
Parameters:
  columnName -
Parameters:
  x -
throws:
  java.sql.SQLException -
See Also:   java.sql.ResultSet.updateInt(java.lang.Stringint)



updateLong
public void updateLong(int columnIndex, long x) throws SQLException(Code)

Parameters:
  columnIndex -
Parameters:
  x -
throws:
  java.sql.SQLException -
See Also:   java.sql.ResultSet.updateLong(intlong)



updateLong
public void updateLong(String columnName, long x) throws SQLException(Code)
Updates a column. This driver is read only, calling this method will always result in an exception.
Parameters:
  columnName -
Parameters:
  x -
throws:
  java.sql.SQLException -
See Also:   java.sql.ResultSet.updateLong(java.lang.Stringlong)



updateNull
public void updateNull(int columnIndex) throws SQLException(Code)

Parameters:
  columnIndex -
throws:
  java.sql.SQLException -
See Also:   java.sql.ResultSet.updateNull(int)



updateNull
public void updateNull(String columnName) throws SQLException(Code)

Parameters:
  columnName -
throws:
  java.sql.SQLException -
See Also:   java.sql.ResultSet.updateNull(java.lang.String)



updateObject
public void updateObject(int columnIndex, Object x, int scale) throws SQLException(Code)

Parameters:
  columnIndex -
Parameters:
  x -
Parameters:
  scale -
throws:
  java.sql.SQLException -
See Also:   java.sql.ResultSet.updateObject(intjava.lang.Objectint)



updateObject
public void updateObject(int columnIndex, Object x) throws SQLException(Code)

Parameters:
  columnIndex -
Parameters:
  x -
throws:
  java.sql.SQLException -
See Also:   java.sql.ResultSet.updateObject(intjava.lang.Object)



updateObject
public void updateObject(String columnName, Object x, int scale) throws SQLException(Code)
Updates a column. This driver is read only, calling this method will always result in an exception.
Parameters:
  columnName -
Parameters:
  x -
Parameters:
  scale -
throws:
  java.sql.SQLException -
See Also:   java.sql.ResultSet.updateObject(java.lang.Stringjava.lang.Objectint)



updateObject
public void updateObject(String columnName, Object x) throws SQLException(Code)
Updates a column. This driver is read only, calling this method will always result in an exception.
Parameters:
  columnName -
Parameters:
  x -
throws:
  java.sql.SQLException -
See Also:   java.sql.ResultSet.updateObject(java.lang.Stringjava.lang.Object)



updateRef
public void updateRef(int columnIndex, Ref x) throws SQLException(Code)

Parameters:
  columnIndex -
Parameters:
  x -
throws:
  java.sql.SQLException -
See Also:   java.sql.ResultSet.updateRef(intjava.sql.Ref)



updateRef
public void updateRef(String columnName, Ref x) throws SQLException(Code)

Parameters:
  columnName -
Parameters:
  x -
throws:
  java.sql.SQLException -
See Also:   java.sql.ResultSet.updateRef(java.lang.Stringjava.sql.Ref)



updateRow
public void updateRow() throws SQLException(Code)
Update a row. This driver is read only, calling this method will always result in an exception.
throws:
  java.sql.SQLException -
See Also:   java.sql.ResultSet.updateRow



updateShort
public void updateShort(int columnIndex, short x) throws SQLException(Code)

Parameters:
  columnIndex -
Parameters:
  x -
throws:
  java.sql.SQLException -
See Also:   java.sql.ResultSet.updateShort(intshort)



updateShort
public void updateShort(String columnName, short x) throws SQLException(Code)
Updates a column. This driver is read only, calling this method will always result in an exception.
Parameters:
  columnName -
Parameters:
  x -
throws:
  java.sql.SQLException -
See Also:   java.sql.ResultSet.updateShort(java.lang.Stringshort)



updateString
public void updateString(int columnIndex, String x) throws SQLException(Code)

Parameters:
  columnIndex -
Parameters:
  x -
throws:
  java.sql.SQLException -
See Also:   java.sql.ResultSet.updateString(intjava.lang.String)



updateString
public void updateString(String columnName, String x) throws SQLException(Code)
Updates a column. This driver is read only, calling this method will always result in an exception.
Parameters:
  columnName -
Parameters:
  x -
throws:
  java.sql.SQLException -
See Also:   java.sql.ResultSet.updateString(java.lang.Stringjava.lang.String)



updateTime
public void updateTime(int columnIndex, Time x) throws SQLException(Code)

Parameters:
  columnIndex -
Parameters:
  x -
throws:
  java.sql.SQLException -
See Also:   java.sql.ResultSet.updateTime(intjava.sql.Time)



updateTime
public void updateTime(String columnName, Time x) throws SQLException(Code)
Updates a column. This driver is read only, calling this method will always result in an exception.
Parameters:
  columnName -
Parameters:
  x -
throws:
  java.sql.SQLException -
See Also:   java.sql.ResultSet.updateTime(java.lang.Stringjava.sql.Time)



updateTimestamp
public void updateTimestamp(int columnIndex, Timestamp x) throws SQLException(Code)

Parameters:
  columnIndex -
Parameters:
  x -
throws:
  java.sql.SQLException -
See Also:   java.sql.ResultSet.updateTimestamp(intjava.sql.Timestamp)



updateTimestamp
public void updateTimestamp(String columnName, Timestamp x) throws SQLException(Code)
Updates a column. This driver is read only, calling this method will always result in an exception.
Parameters:
  columnName -
Parameters:
  x -
throws:
  java.sql.SQLException -
See Also:   java.sql.ResultSet.updateTimestamp(java.lang.Stringjava.sql.Timestamp)



wasNull
public boolean wasNull() throws SQLException(Code)
Reports whether the last column read had a value of SQL NULL. boolean
throws:
  java.sql.SQLException -



Methods inherited from java.lang.Object
native protected Object clone() throws CloneNotSupportedException(Code)(Java Doc)
public boolean equals(Object obj)(Code)(Java Doc)
protected void finalize() throws Throwable(Code)(Java Doc)
final native public Class getClass()(Code)(Java Doc)
native public int hashCode()(Code)(Java Doc)
final native public void notify()(Code)(Java Doc)
final native public void notifyAll()(Code)(Java Doc)
public String toString()(Code)(Java Doc)
final native public void wait(long timeout) throws InterruptedException(Code)(Java Doc)
final public void wait(long timeout, int nanos) throws InterruptedException(Code)(Java Doc)
final public void wait() throws InterruptedException(Code)(Java Doc)

www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.