Package org.firebirdsql.jdbc
Interface FirebirdResultSetMetaData
- 
- All Superinterfaces:
- java.sql.ResultSetMetaData,- java.sql.Wrapper
 - All Known Implementing Classes:
- FBResultSetMetaData
 
 public interface FirebirdResultSetMetaData extends java.sql.ResultSetMetaDataFirebird-specific extensions to theResultSetMetaDatainterface.- Author:
- Roman Rokytskyy
 
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringgetTableAlias(int column)Gets the designated column's table alias.- 
Methods inherited from interface java.sql.ResultSetMetaDatagetCatalogName, getColumnClassName, getColumnCount, getColumnDisplaySize, getColumnLabel, getColumnName, getColumnType, getColumnTypeName, getPrecision, getScale, getSchemaName, getTableName, isAutoIncrement, isCaseSensitive, isCurrency, isDefinitelyWritable, isNullable, isReadOnly, isSearchable, isSigned, isWritable
 
- 
 
- 
- 
- 
Method Detail- 
getTableAliasjava.lang.String getTableAlias(int column) throws java.sql.SQLExceptionGets the designated column's table alias.- Parameters:
- column- the first column is 1, the second is 2, ...
- Returns:
- table alias or "" if not applicable
- Throws:
- java.sql.SQLException- if a database access error occurs
 
 
- 
 
-