Java Doc for SqlRowSetMetaData.java in  » J2EE » spring-framework-2.5 » org » springframework » jdbc » support » rowset » 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 » J2EE » spring framework 2.5 » org.springframework.jdbc.support.rowset 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


org.springframework.jdbc.support.rowset.SqlRowSetMetaData

All known Subclasses:   org.springframework.jdbc.support.rowset.ResultSetWrappingSqlRowSetMetaData,
SqlRowSetMetaData
public interface SqlRowSetMetaData (Code)
Meta data interface for Spring's SqlRowSet, analogous to javax.sql.ResultSetMetaData

The main difference to the standard JDBC RowSetMetaData is that an SQLException is never thrown here. This allows a SqlRowSetMetaData to be used without having to deal with checked exceptions. A SqlRowSetMetaData will throw Spring's org.springframework.jdbc.InvalidResultSetAccessException instead (when appropriate).
author:
   Thomas Risberg
since:
   1.2
See Also:   SqlRowSet.getMetaData
See Also:   java.sql.ResultSetMetaData
See Also:   org.springframework.jdbc.InvalidResultSetAccessException





Method Summary
 StringgetCatalogName(int columnIndex)
     Retrieves the catalog name of the table that served as the source for the specified column.
 StringgetColumnClassName(int columnIndex)
     Retrieves the fully qualified class that the specified column will be mapped to.
 intgetColumnCount()
     Retrives the number of columns in the RowSet.
 intgetColumnDisplaySize(int columnIndex)
     Retrieves the maximum width of the designated column.
 StringgetColumnLabel(int columnIndex)
     Retrieve the suggested column title for the column specified.
 StringgetColumnName(int columnIndex)
     Retrieve the column name for the indicated column.
 String[]getColumnNames()
     Return the column names of the table that the result set represents.
 intgetColumnType(int columnIndex)
     Retrieve the SQL type code for the indicated column.
 StringgetColumnTypeName(int columnIndex)
     Retrieves the DBMS-specific type name for the indicated column.
 intgetPrecision(int columnIndex)
     Retrieves the precision for the indicated column.
 intgetScale(int columnIndex)
     Retrieves the scale of the indicated column.
 StringgetSchemaName(int columnIndex)
     Retrieves the schema name of the table that served as the source for the specified column.
 StringgetTableName(int columnIndex)
     Retrieves the name of the table that served as the source for the specified column.
 booleanisCaseSensitive(int columnIndex)
     Indicates whether the case of the designated column is significant.
 booleanisCurrency(int columnIndex)
     Indicates whether the designated column contains a currency value.
 booleanisSigned(int columnIndex)
     Indicates whether the designated column contains a signed number.



Method Detail
getCatalogName
String getCatalogName(int columnIndex) throws InvalidResultSetAccessException(Code)
Retrieves the catalog name of the table that served as the source for the specified column.
Parameters:
  columnIndex - the index of the column the catalog name
See Also:   java.sql.ResultSetMetaData.getCatalogName(int)



getColumnClassName
String getColumnClassName(int columnIndex) throws InvalidResultSetAccessException(Code)
Retrieves the fully qualified class that the specified column will be mapped to.
Parameters:
  columnIndex - the index of the column the class name as a String
See Also:   java.sql.ResultSetMetaData.getColumnClassName(int)



getColumnCount
int getColumnCount() throws InvalidResultSetAccessException(Code)
Retrives the number of columns in the RowSet. the number of columns
See Also:   java.sql.ResultSetMetaData.getColumnCount



getColumnDisplaySize
int getColumnDisplaySize(int columnIndex) throws InvalidResultSetAccessException(Code)
Retrieves the maximum width of the designated column.
Parameters:
  columnIndex - the index of the column the width of the column
See Also:   java.sql.ResultSetMetaData.getColumnDisplaySize(int)



getColumnLabel
String getColumnLabel(int columnIndex) throws InvalidResultSetAccessException(Code)
Retrieve the suggested column title for the column specified.
Parameters:
  columnIndex - the index of the column the column title
See Also:   java.sql.ResultSetMetaData.getColumnLabel(int)



getColumnName
String getColumnName(int columnIndex) throws InvalidResultSetAccessException(Code)
Retrieve the column name for the indicated column.
Parameters:
  columnIndex - the index of the column the column name
See Also:   java.sql.ResultSetMetaData.getColumnName(int)



getColumnNames
String[] getColumnNames() throws InvalidResultSetAccessException(Code)
Return the column names of the table that the result set represents. the column names



getColumnType
int getColumnType(int columnIndex) throws InvalidResultSetAccessException(Code)
Retrieve the SQL type code for the indicated column.
Parameters:
  columnIndex - the index of the column the SQL type code
See Also:   java.sql.ResultSetMetaData.getColumnType(int)
See Also:   java.sql.Types



getColumnTypeName
String getColumnTypeName(int columnIndex) throws InvalidResultSetAccessException(Code)
Retrieves the DBMS-specific type name for the indicated column.
Parameters:
  columnIndex - the index of the column the type name
See Also:   java.sql.ResultSetMetaData.getColumnTypeName(int)



getPrecision
int getPrecision(int columnIndex) throws InvalidResultSetAccessException(Code)
Retrieves the precision for the indicated column.
Parameters:
  columnIndex - the index of the column the precision
See Also:   java.sql.ResultSetMetaData.getPrecision(int)



getScale
int getScale(int columnIndex) throws InvalidResultSetAccessException(Code)
Retrieves the scale of the indicated column.
Parameters:
  columnIndex - the index of the column the scale
See Also:   java.sql.ResultSetMetaData.getScale(int)



getSchemaName
String getSchemaName(int columnIndex) throws InvalidResultSetAccessException(Code)
Retrieves the schema name of the table that served as the source for the specified column.
Parameters:
  columnIndex - the index of the column the schema name
See Also:   java.sql.ResultSetMetaData.getSchemaName(int)



getTableName
String getTableName(int columnIndex) throws InvalidResultSetAccessException(Code)
Retrieves the name of the table that served as the source for the specified column.
Parameters:
  columnIndex - the index of the column the name of the table
See Also:   java.sql.ResultSetMetaData.getTableName(int)



isCaseSensitive
boolean isCaseSensitive(int columnIndex) throws InvalidResultSetAccessException(Code)
Indicates whether the case of the designated column is significant.
Parameters:
  columnIndex - the index of the column true if the case sensitive, false otherwise
See Also:   java.sql.ResultSetMetaData.isCaseSensitive(int)



isCurrency
boolean isCurrency(int columnIndex) throws InvalidResultSetAccessException(Code)
Indicates whether the designated column contains a currency value.
Parameters:
  columnIndex - the index of the column true if the value is a currency value, false otherwise
See Also:   java.sql.ResultSetMetaData.isCurrency(int)



isSigned
boolean isSigned(int columnIndex) throws InvalidResultSetAccessException(Code)
Indicates whether the designated column contains a signed number.
Parameters:
  columnIndex - the index of the column true if the column contains a signed number, false otherwise
See Also:   java.sql.ResultSetMetaData.isSigned(int)



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