Java Doc for JdbcDriver.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.JdbcDriver

JdbcDriver
public class JdbcDriver implements QDriver(Code)
This class implements the java.sql.Driver interface, which provides a basic mechanism for establishing connections to a QED database. A driver can support multiple simultaneously open databases -- the database URL specifies a file name which is the root directory of the database, and which is used to select the correct database.
author:
   Stan Bailes


Field Summary
static  Hashtabledbs
    
public static  JdbcDriverjdbcDriver
    
final static  ConfigNumbertrace
    

Constructor Summary
public  JdbcDriver()
    

Method Summary
public  booleanacceptsURL(String url)
     Return true if this is a QED JDBC URL.
public static  voidcloseAll()
    
public  voidcloseDatabase(String name)
     Close the specified database.
public  java.sql.Connectionconnect(String url, Properties props)
     Assuming that url is a QED URL, return a new Connection object that can be used to access the database specified by that url.
public  DatabasegetDatabase(String name)
    
public  EnumerationgetDatabaseNames()
    
public  intgetMajorVersion()
     Return the driver major version number.
public  intgetMinorVersion()
     Return the driver minor version number.
public  DriverPropertyInfo[]getPropertyInfo(String url, Properties info)
     Return an array of DriverPropertyInfo objects that describe the properties required to connect to a QED database.
public  SessiongetSession(java.sql.Connection conn)
    
public  booleanjdbcCompliant()
    
public  java.sql.ConnectionmakeConnection(Database db, String auth, String passwd)
     Make a new Connection for the specified database and user.
public  QedResultSetmakeResultSet(Cursor c)
     Make a QedResultSet to wrap the internal database cursor.

Field Detail
dbs
static Hashtable dbs(Code)



jdbcDriver
public static JdbcDriver jdbcDriver(Code)



trace
final static ConfigNumber trace(Code)




Constructor Detail
JdbcDriver
public JdbcDriver()(Code)
No-argument constructor




Method Detail
acceptsURL
public boolean acceptsURL(String url)(Code)
Return true if this is a QED JDBC URL. QED URLS are of the form jdbc:qed:database.
Parameters:
  url - a URL true if url is a QED JDBC URL.



closeAll
public static void closeAll()(Code)
Close all databases (presumably at program exit)



closeDatabase
public void closeDatabase(String name)(Code)
Close the specified database.
Parameters:
  name - the name of the database.



connect
public java.sql.Connection connect(String url, Properties props) throws SQLException(Code)
Assuming that url is a QED URL, return a new Connection object that can be used to access the database specified by that url.
Parameters:
  url - a JDBC URL. If the URL string contains a semicolon,then the URL proper is interpreted as the portion of thestring preceeding the semicolon, and the remaining stringis treated as a semi-colon separated list of 'name=value'connection properties. E.g., jdbc:qed:db1;create=true
Parameters:
  props - a set of connection properties. a new Connection
exception:
  SQLException - may be thrown



getDatabase
public Database getDatabase(String name)(Code)
Locate a specific database by name
Parameters:
  name - the name of the database the database.



getDatabaseNames
public Enumeration getDatabaseNames()(Code)
Enumerate the currently open databases an enumeration of the names of the currently open databases



getMajorVersion
public int getMajorVersion()(Code)
Return the driver major version number. the driver's major version number



getMinorVersion
public int getMinorVersion()(Code)
Return the driver minor version number. the driver's minor version number



getPropertyInfo
public DriverPropertyInfo[] getPropertyInfo(String url, Properties info) throws SQLException(Code)
Return an array of DriverPropertyInfo objects that describe the properties required to connect to a QED database. Currently no properties are required except user
Parameters:
  url - the database url
Parameters:
  info - the properties the client has so far. the required connect properties



getSession
public Session getSession(java.sql.Connection conn)(Code)
Return the session for this connection



jdbcCompliant
public boolean jdbcCompliant()(Code)
QED is a JDBC compliant driver true



makeConnection
public java.sql.Connection makeConnection(Database db, String auth, String passwd) throws SQLException(Code)
Make a new Connection for the specified database and user.
Parameters:
  db - the database
Parameters:
  auth - the userid



makeResultSet
public QedResultSet makeResultSet(Cursor c)(Code)
Make a QedResultSet to wrap the internal database cursor.
Parameters:
  c - the cursor the resultset



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.