DBAbstract API Documentation

ro.raducora.utils.protocol
Class SerializedResultSetMetaData

java.lang.Object
  |
  +--ro.raducora.utils.protocol.SerializedResultSetMetaData
All Implemented Interfaces:
java.sql.ResultSetMetaData, java.io.Serializable

public class SerializedResultSetMetaData
extends java.lang.Object
implements java.sql.ResultSetMetaData, java.io.Serializable

Author:
Radu Coravu
See Also:
Serialized Form

Field Summary
 
Fields inherited from interface java.sql.ResultSetMetaData
columnNoNulls, columnNullable, columnNullableUnknown
 
Constructor Summary
SerializedResultSetMetaData(java.sql.ResultSetMetaData rsMetaData)
          A serializable copy of an ResultSetMetaData variable
 
Method Summary
 java.lang.String getCatalogName(int column)
           
 java.lang.String getColumnClassName(int column)
           
 int getColumnCount()
           
 int getColumnDisplaySize(int column)
          method not implemented
 java.lang.String getColumnLabel(int column)
          method not implemented
 java.lang.String getColumnName(int column)
           
 int getColumnType(int column)
           
 java.lang.String getColumnTypeName(int column)
          method not implemented
 int getPrecision(int column)
          method not implemented
 int getScale(int column)
          method not implemented
 java.lang.String getSchemaName(int column)
          method not implemented
 java.lang.String getTableName(int column)
          method not implemented
 boolean isAutoIncrement(int column)
          method not implemented
 boolean isCaseSensitive(int column)
          method not implemented
 boolean isCurrency(int column)
          method not implemented
 boolean isDefinitelyWritable(int column)
          method not implemented
 int isNullable(int column)
          method not implemented
 boolean isReadOnly(int column)
          method not implemented
 boolean isSearchable(int column)
          method not implemented
 boolean isSigned(int column)
          method not implemented
 boolean isWritable(int column)
          method not implemented
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

SerializedResultSetMetaData

public SerializedResultSetMetaData(java.sql.ResultSetMetaData rsMetaData)
                            throws java.sql.SQLException
A serializable copy of an ResultSetMetaData variable

Parameters:
rsMetaData - the ResultSetMetaData to wrap
Throws:
java.sql.SQLException
Method Detail

getColumnCount

public int getColumnCount()
                   throws java.sql.SQLException
Specified by:
getColumnCount in interface java.sql.ResultSetMetaData
java.sql.SQLException
See Also:
ResultSetMetaData.getColumnCount()

isAutoIncrement

public boolean isAutoIncrement(int column)
                        throws java.sql.SQLException
method not implemented

Specified by:
isAutoIncrement in interface java.sql.ResultSetMetaData
java.sql.SQLException
See Also:
ResultSetMetaData.isAutoIncrement(int)

isCaseSensitive

public boolean isCaseSensitive(int column)
                        throws java.sql.SQLException
method not implemented

Specified by:
isCaseSensitive in interface java.sql.ResultSetMetaData
java.sql.SQLException
See Also:
ResultSetMetaData.isCaseSensitive(int)

isSearchable

public boolean isSearchable(int column)
                     throws java.sql.SQLException
method not implemented

Specified by:
isSearchable in interface java.sql.ResultSetMetaData
java.sql.SQLException
See Also:
ResultSetMetaData.isSearchable(int)

isCurrency

public boolean isCurrency(int column)
                   throws java.sql.SQLException
method not implemented

Specified by:
isCurrency in interface java.sql.ResultSetMetaData
java.sql.SQLException
See Also:
ResultSetMetaData.isCurrency(int)

isNullable

public int isNullable(int column)
               throws java.sql.SQLException
method not implemented

Specified by:
isNullable in interface java.sql.ResultSetMetaData
java.sql.SQLException
See Also:
ResultSetMetaData.isNullable(int)

isSigned

public boolean isSigned(int column)
                 throws java.sql.SQLException
method not implemented

Specified by:
isSigned in interface java.sql.ResultSetMetaData
java.sql.SQLException
See Also:
ResultSetMetaData.isSigned(int)

getColumnDisplaySize

public int getColumnDisplaySize(int column)
                         throws java.sql.SQLException
method not implemented

Specified by:
getColumnDisplaySize in interface java.sql.ResultSetMetaData
java.sql.SQLException
See Also:
ResultSetMetaData.getColumnDisplaySize(int)

getColumnLabel

public java.lang.String getColumnLabel(int column)
                                throws java.sql.SQLException
method not implemented

Specified by:
getColumnLabel in interface java.sql.ResultSetMetaData
java.sql.SQLException
See Also:
ResultSetMetaData.getColumnLabel(int)

getColumnName

public java.lang.String getColumnName(int column)
                               throws java.sql.SQLException
Specified by:
getColumnName in interface java.sql.ResultSetMetaData
java.sql.SQLException
See Also:
ResultSetMetaData.getColumnName(int)

getSchemaName

public java.lang.String getSchemaName(int column)
                               throws java.sql.SQLException
method not implemented

Specified by:
getSchemaName in interface java.sql.ResultSetMetaData
java.sql.SQLException
See Also:
ResultSetMetaData.getSchemaName(int)

getPrecision

public int getPrecision(int column)
                 throws java.sql.SQLException
method not implemented

Specified by:
getPrecision in interface java.sql.ResultSetMetaData
java.sql.SQLException
See Also:
ResultSetMetaData.getPrecision(int)

getScale

public int getScale(int column)
             throws java.sql.SQLException
method not implemented

Specified by:
getScale in interface java.sql.ResultSetMetaData
java.sql.SQLException
See Also:
ResultSetMetaData.getScale(int)

getTableName

public java.lang.String getTableName(int column)
                              throws java.sql.SQLException
method not implemented

Specified by:
getTableName in interface java.sql.ResultSetMetaData
java.sql.SQLException
See Also:
ResultSetMetaData.getTableName(int)

getCatalogName

public java.lang.String getCatalogName(int column)
                                throws java.sql.SQLException
Specified by:
getCatalogName in interface java.sql.ResultSetMetaData
java.sql.SQLException
See Also:
ResultSetMetaData.getCatalogName(int)

getColumnType

public int getColumnType(int column)
                  throws java.sql.SQLException
Specified by:
getColumnType in interface java.sql.ResultSetMetaData
java.sql.SQLException
See Also:
ResultSetMetaData.getColumnType(int)

getColumnTypeName

public java.lang.String getColumnTypeName(int column)
                                   throws java.sql.SQLException
method not implemented

Specified by:
getColumnTypeName in interface java.sql.ResultSetMetaData
java.sql.SQLException
See Also:
ResultSetMetaData.getColumnTypeName(int)

isReadOnly

public boolean isReadOnly(int column)
                   throws java.sql.SQLException
method not implemented

Specified by:
isReadOnly in interface java.sql.ResultSetMetaData
java.sql.SQLException
See Also:
ResultSetMetaData.isReadOnly(int)

isWritable

public boolean isWritable(int column)
                   throws java.sql.SQLException
method not implemented

Specified by:
isWritable in interface java.sql.ResultSetMetaData
java.sql.SQLException
See Also:
ResultSetMetaData.isWritable(int)

isDefinitelyWritable

public boolean isDefinitelyWritable(int column)
                             throws java.sql.SQLException
method not implemented

Specified by:
isDefinitelyWritable in interface java.sql.ResultSetMetaData
java.sql.SQLException
See Also:
ResultSetMetaData.isDefinitelyWritable(int)

getColumnClassName

public java.lang.String getColumnClassName(int column)
                                    throws java.sql.SQLException
Specified by:
getColumnClassName in interface java.sql.ResultSetMetaData
java.sql.SQLException
See Also:
ResultSetMetaData.getColumnClassName(int)

DBAbstract API Documentation

© Copyright Radu Coravu 2002 - 2004.