Java Doc for ResultSetMetaData.java in  » Database-DBMS » Quadcap-Embeddable-Database » com » quadcap » 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 » Database DBMS » Quadcap Embeddable Database » com.quadcap.jdbc 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   com.quadcap.jdbc.ResultSetMetaData

ResultSetMetaData
public class ResultSetMetaData implements java.sql.ResultSetMetaData(Code)
This class implements the java.sql.ResultSetMetaData interface, which provides a mechanism to obtain information about the columns in a ResultSet object.
author:
   Stan Bailes


Field Summary
 Cursorcursor
    

Constructor Summary
public  ResultSetMetaData(Cursor cursor)
    

Method Summary
public  StringgetCatalogName(int column)
     QED doesn't support catalogs.
public  StringgetColumnClassName(int column)
    
public  intgetColumnCount()
     Return the number of columns in the ResultSet.
public  intgetColumnDisplaySize(int column)
    
public  StringgetColumnLabel(int column)
     Return the shortest possible name for this column, such that the name is unique within this ResultSet object.
public  StringgetColumnName(int column)
     Return the shortest possible name for this column, such that the name is unique within this ResultSet object.
public  intgetColumnType(int column)
    
public  StringgetColumnTypeName(int column)
    
public  intgetPrecision(int column)
     Return the maximum precision of this column, or -1 if this column is not a numeric type.
public  intgetScale(int column)
    
public  StringgetSchemaName(int column)
     Return the schema name for the table from which this column is derived.
public  StringgetTableName(int column)
     Return name of the table from which this column is derived.
public  booleanisAutoIncrement(int column)
     Return true if this is an auto-increment type.
public  booleanisCaseSensitive(int column)
     Return true if this column is case-sensitive.
public  booleanisCurrency(int column)
     Return true if this column is a cash value.
public  booleanisDefinitelyWritable(int column)
    
public  intisNullable(int column)
    
public  booleanisReadOnly(int column)
    
public  booleanisSearchable(int column)
     Return true if the column can be used in a WHERE clause.
public  booleanisSigned(int column)
     Return true if this column contains a signed number.
public  booleanisWritable(int column)
     Return true if this column is writable.

Field Detail
cursor
Cursor cursor(Code)




Constructor Detail
ResultSetMetaData
public ResultSetMetaData(Cursor cursor)(Code)




Method Detail
getCatalogName
public String getCatalogName(int column) throws SQLException(Code)
QED doesn't support catalogs.



getColumnClassName
public String getColumnClassName(int column) throws SQLException(Code)
Return the fully qualified class name of the Java class to which the specified column will be mapped
Parameters:
  column - the column number the column's class name
exception:
  SQLException - may be thrown



getColumnCount
public int getColumnCount() throws SQLException(Code)
Return the number of columns in the ResultSet. the number of columns in the ResultSet.
exception:
  SQLException - may be thrown



getColumnDisplaySize
public int getColumnDisplaySize(int column) throws SQLException(Code)
Return the normal maximum width in characters of the values in the specified column
Parameters:
  column - the column number the maximum display size of a value in this column
exception:
  SQLException - may be thrown



getColumnLabel
public String getColumnLabel(int column) throws SQLException(Code)
Return the shortest possible name for this column, such that the name is unique within this ResultSet object.
Parameters:
  column - the column number the column label
exception:
  SQLException - may be thrown



getColumnName
public String getColumnName(int column) throws SQLException(Code)
Return the shortest possible name for this column, such that the name is unique within this ResultSet object.
Parameters:
  column - the column number the column name
exception:
  SQLException - may be thrown



getColumnType
public int getColumnType(int column) throws SQLException(Code)
Return the JDBC type of this column
Parameters:
  column - the column number the column's JDBC type
exception:
  SQLException - may be thrown



getColumnTypeName
public String getColumnTypeName(int column) throws SQLException(Code)
Return the SQL type name of this column
Parameters:
  column - the column number the column's SQL type
exception:
  SQLException - may be thrown



getPrecision
public int getPrecision(int column) throws SQLException(Code)
Return the maximum precision of this column, or -1 if this column is not a numeric type.
Parameters:
  column - the column number the column's maximum precision
exception:
  SQLException - may be thrown



getScale
public int getScale(int column) throws SQLException(Code)
Return the scale of this column, or -1 if this column is not a numeric type
Parameters:
  column - the column number the column's scale
exception:
  SQLException - may be thrown



getSchemaName
public String getSchemaName(int column) throws SQLException(Code)
Return the schema name for the table from which this column is derived. This function works for normal columns, but returns the empty string for computed columns.
Parameters:
  column - the column number the column's table's schema's name
exception:
  SQLException - may be thrown



getTableName
public String getTableName(int column) throws SQLException(Code)
Return name of the table from which this column is derived.
Parameters:
  column - the column number the column's table's name
exception:
  SQLException - may be thrown



isAutoIncrement
public boolean isAutoIncrement(int column) throws SQLException(Code)
Return true if this is an auto-increment type.
Parameters:
  column - the column number false
exception:
  SQLException - may be thrown



isCaseSensitive
public boolean isCaseSensitive(int column) throws SQLException(Code)
Return true if this column is case-sensitive. QED always returns false.
Parameters:
  column - the column number false
exception:
  SQLException - may be thrown



isCurrency
public boolean isCurrency(int column) throws SQLException(Code)
Return true if this column is a cash value. QED always returns false.
Parameters:
  column - the column number false
exception:
  SQLException - may be thrown



isDefinitelyWritable
public boolean isDefinitelyWritable(int column) throws SQLException(Code)
Return true if this column is definitely writable
Parameters:
  column - the column number true if this column is writable
exception:
  SQLException - may be thrown



isNullable
public int isNullable(int column) throws SQLException(Code)
Return the JDBC 'nullability' state for this column
Parameters:
  column - the column number if this column can contain NULLs
exception:
  SQLException - may be thrown



isReadOnly
public boolean isReadOnly(int column) throws SQLException(Code)
Return true if this column is not writable
Parameters:
  column - the column number true if this column is read-only
exception:
  SQLException - may be thrown



isSearchable
public boolean isSearchable(int column) throws SQLException(Code)
Return true if the column can be used in a WHERE clause. QED always returns true
Parameters:
  column - the column number true
exception:
  SQLException - may be thrown



isSigned
public boolean isSigned(int column) throws SQLException(Code)
Return true if this column contains a signed number. In QED, this is true for all numeric types and for intervals.
Parameters:
  column - the column number true if this column contains a signed number
exception:
  SQLException - may be thrown



isWritable
public boolean isWritable(int column) throws SQLException(Code)
Return true if this column is writable.
Parameters:
  column - the column number true if this column is writable.
exception:
  SQLException - may be thrown



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.