|
| |
| | Using WebLogic JDBC |
 | | You use a JDBC Statement or one of its subclasses, created in the context of the JDBC Connection, to execute queries on the database. |  | | The results of the query are contained in a JDBC ResultSet. |  | | This method returns a JDBC Connection object; if we supply a property "connectionID" that already exists on the WebLogic Server, all of the other properties for login access, etc., are ignored, and the cached JDBC Connection, which contains all the information necessary to resume connection to the database, is used instead. |
|
http://www.weblogic.com/docs45/classdocs/API_jdbct3.html
(12054 words)
|
|
| |
| | Java Enterprise in a Nutshell, 2nd Edition: Chapter 2: JDBC |
 | | Most JDBC programs are designed to work with a specific database and particular tables in that database; the program knows exactly what kind of data it is dealing with. |  | | JDBC is Sun's attempt to create a platform-neutral interface between databases and Java. |  | | objects: forward-only (as in JDBC 1.0), scroll-insensitive, and scroll-sensitive. |
|
http://www.oreilly.com/catalog/jentnut2/chapter/ch02.html
(7466 words)
|
|
| |
| | PreciseJava.com - Best practices to improve performance in JDBC |
 | | There are three types of Statement interfaces in JDBC to represent the SQL query and execute that query, they are Statement, PreparedStatement and CallableStatement. |  | | By using JDBC API, you can connect virtually any database, send SQL queries to the database and process the results. |  | | Connection interface encapsulates database connection functionality, Statement interface encapsulates SQL query representation and execution functionality and ResultSet interface encapsulates retrieving data which comes from execution of SQL query using Statement. |
|
http://www.precisejava.com/javaperf/j2ee/JDBC.htm
(3637 words)
|
|
| |
| | A Brief Introduction to JDBC |
 | | JDBC is there only to help you (a Java developer) develop data access applications without having to learn and use proprietary APIs provided by different RDBMS vendors. |  | | The JDBC API is available in the java.sql and javax.sql packages. |  | | In this article we learned what is JDBC, why is JDBC useful and why to develop applications using JDBC. |
|
http://stardeveloper.com/articles/display.html?article=2003082701&page=1
(644 words)
|
|
| |
| | Oracle JDBC Frequently Asked Questions |
 | | It is possible to create a CachedRowSet on one machine where the Jdbc drivers are present and then move it on to a remote client where only the rowset binaries are present and not the driver binaries. |  | | With the Thin JDBC driver, when I run my applet using Appletviewer on the local machine where the classes111.zip file is present in the CLASSPATH, my applet runs correctly. |  | | Beginning with this file, Oracle JDBC classes files will be named ojdcbXX.jar, where XX is the Java version number. |
|
http://www.oracle.com/technology/tech/java/sqlj_jdbc/htdocs/jdbc_faq.htm
(9995 words)
|
|
| |
| | The Java Community Process(SM) Program - JSRs: Java Specification Requests - detail JSR# 221 |
 | | JDBC 4.0 will leverage the available J2SE 1.5 language improvements to allow the developer to more closely associate a SQL query with specific data representations such as class representations. |  | | The JDBC API is a mature technology, currently in its third revision and has existed in specification format since January 1997. |  | | This specification will not unnecessarily mask as developer's ability to manage SQL queries directly from their code base, but it will offers improveds means by which SQL queries and SQL query results can be more closely associated with the Java language and it's underlying specifications. |
|
http://jcp.org/en/jsr/detail?id=221
(1584 words)
|
|
| |
| | Java Skyline: Learn JDBC |
 | | When the JDBC driver initially prepares a statement, it parses and error checks the statement and then sends execution plan information to the RDBMS, including the bindings of columns that you use in the statement. |  | | However, JDBC is the basis for nearly all interaction with relational data. |  | | Check with the JDBC and database vendor to determine whether JDBC 2.0 has been implemented. |
|
http://www.javaskyline.com/learnjdbc.html
(1808 words)
|
|
| |
| | Oracle FAQ: Java Database Connectivity (JDBC) and JSQL |
 | | Remember, you must use a JDBC version that matches the version of your Java Development Kit. |  | | SQLJ reads input either from a *.SQLJ file, or a Java source file in which SQLJ statements are embedded. |  | | JDeveloper is the Oracle IDE (Integrated Development Environment) for developing SQLJ and JDBC programs, applets, stored procedures, EJB's, JSP's etc. |
|
http://www.orafaq.com/faqjdbc.htm
(1923 words)
|
|
| |
| | Integrating Databases with Java via JDBC |
 | | This is one of the reasons why the initial development of JDBC is progressing so fast. |  | | With help from JDBC, Java's ability to integrate with popular commercial DBMS and its network-oriented nature make it an ideal client/server computing environment |  | | To avert a potential Tower of Babel in the future due to proprietary mechanisms, work on JDBC is progressing rapidly. |
|
http://www.javaworld.com/jw-05-1996/jw-05-shah.html
(1035 words)
|
|
| |
| | JDBC Components |
 | | In this scenario the Java Virtual Machine and OpenLink Drivers for JDBC and the OpenLink Server server components for JDBC reside on the same machine which is known as the Application Server. |  | | The OpenLink JDBC agent and OpenLink Database agents form the OpenLink server components, In the prior section you would have installed these components on the appropriate server machine. |  | | This Linux or UNIX server machine also hosts the database engine that you will be connecting to via JDBC, this machine is typically referred to as your Database Server machine. |
|
http://www.openlinksw.com/info/docs/uda50/mt/JDBCClientClasses.html
(10212 words)
|
|
| |
| | jGuru: JDBC FAQ Home Page |
 | | A solution that is perfectly portable to all databases, is to execute a query for checking if that unique value is present before inserting the row. |  | | My program does lots of inserts, updates, selects, etc. The problem I found is that if I create a statement for each operation... |  | | Ian Darwin has two classes (CSV.java and CSVRE.java) to handle CSV files in his Java Cookbook, including a way with regular expressions. |
|
http://www.jguru.com/faq/home.jsp?topic=JDBC
(916 words)
|
|
| |
| | JDBC Technology |
 | | JDBC API Mailing List Learn more about the JDBC API. |  | | See also our page covering the relationship of JDBC to a related technology: Java Data Objects (JDO). |  | | - Using CachedRowSet to Transfer JDBC Query Results Between Classes |
|
http://java.sun.com/products/jdbc
(431 words)
|
|
| |
| | Amazon.com: Books: Database Programming with JDBC and Java |
 | | The text covers JDBC with enough depth, without burdening the reader with useless details available in any reference (in fact the reference is attached in an appendix, so there is no need to go looking online). |  | | The JDBC itself is given short shrift and the author goes off on a tangent of questionable value. |  | | The Java Database Connectivity classes (JDBC) sensibly provide an interface between a platform-independent programming language (Java) and a standardized database language (Structured Query Language, or SQL). |
|
http://www.amazon.com/exec/obidos/tg/detail/-/1565926161?v=glance
(2419 words)
|
|
| |
| | WebLogic JDBC Options |
 | | There are limitations on the quantity of data that may be stored using this evaluation version. |  | | An evaluation copy of this pure-java DBMS from Cloudscape is included with your WebLogic Server distribution. |  | | For the latest information on drivers supported with WebLogic server, see our Platform Support page. |
|
http://www.weblogic.com/docs51/classdocs/jdbcdrivers.html
(991 words)
|
|
| |
| | High-Performance Data Access Drivers for ODBC, JDBC, ADO.NET, and OLE DB |
 | | JDBC Drivers are 100% pure and run on any platform hosting a Java Virtual Machine (runtime environment). |  | | Irrespective of you seek to exploit UDA based middleware, it will always ultimately provide better value to your enterprise than any proprietary (aka Native) alternative. |  | | In today's knowledge economy your ability to exploit data ultimately determines success. |
|
http://uda.openlinksw.com/jdbc
(415 words)
|
|
| |
| | Java Database Connectivity - Wikipedia, the free encyclopedia |
 | | (To be strictly correct, JDBC is not an acronym.) It provides methods for querying and updating data in a database. |  | | These statements do not return any other information. |  | | Java Database Connectivity, or JDBC, is an API for the Java programming language that defines how a client may access a database. |
|
http://en.wikipedia.org/wiki/JDBC
(900 words)
|
|
| |
| | Java Connectivity With JDBC Page 1 May 3, 1999 |
 | | Enter the JDBC driver, which is designed with database communication in mind. |  | | Given that ODBC is so widely used, the easiest way to connect JDBC to popular databases is to create bridging software between it and ODBC. |  | | Java Database Connectivity (JDBC) was designed by Sun Microsystems to give Java programmers the ability to issue and process SQL. |
|
http://www.networkcomputing.com/1009/1009ws2.html
(685 words)
|
|
| |
| | Download |
 | | The current development driver is known to work with all server versions back to, and including, 7.2. |  | | Copyright © 2004-2005 The PostgreSQL Global Development Group. |  | | To determine which JDBC version of the driver you want you need to look at the JDK version you are running. |
|
http://jdbc.postgresql.org/download.html
(249 words)
|
|
| |
| | JDBC CallableStatement |
 | | This overview is excerpted from JDBCTM Database Access from JavaTM: A Tutorial and Annotated Reference, currently in progress at JavaSoft. |  | | It doesn't take much to get started, just a Connection using the right driver, a Statement to execute, and the query results in a ResultSet. |  | | Java includes a technology called Java Database Connectivity (JDBC) that allows Java programs to access data stored in relational databases. |
|
http://www.javaolympus.com/J2SE/Database/JDBC/JDBCCallableStatement.jsp
(349 words)
|
|
| |
| | SQL Summit Directory of JDBC Drivers |
 | | Dharma JDBC SDK, JDBC SDK Lite, Dharma SQL |  | | ODBC and JDBC data sources, including behind firewalls |  | | Progress, Oracle, Microsoft Access, Microsoft SQL Server, Informix, Sybase, other ODBC or JDBC data source |
|
http://www.sqlsummit.com/JDBCVend.htm
(753 words)
|
|
| |
| | JDBC |
 | | My problem with many tutorials on JDBC is that they refer you to the vendor documentation for the JDBC driver. |  | | As the sample program below demonstrates, this is not so. |  | | However, these are not necessary as the following program demonstrates. |
|
http://www.signitek.com/Articles/Java/JDBC.htm
(181 words)
|
|
| |
| | JDBC, JDBC Driver, JDBC Drivers, Download JDBC Driver, SQL Server JDBC Driver: Products: Home |
 | | The latest DataDirect JDBC driver includes a new Performance Tuning Wizard, an intuitive, graphical-based approach for configuring the JDBC driver for optimal performance. |  | | In addition, DataDirect has expanded support for Windows authentication to include Oracle environments, and has enhanced support for parameter and result set metadata. |  | | These changes increase the flexibility and power available to the application developer, simplify configuration and deployment of the JDBC driver, and provide the capabilities necessary to strengthen the security of your applications. |
|
http://www.datadirect.com/products/jdbc/index.ssp
(447 words)
|
|
| |
| | C-JDBC User's Guide |
 | | The database is distributed and replicated among several nodes and C-JDBC load balances the queries between these nodes. |  | | You do not have to modify client applications, application servers or database server software. |  | | You only have to update the JDBC driver configuration used by your application (usually it is just a configuration file update) and to setup a C-JDBC configuration file (see Section 11, “Virtual database configuration”). |
|
http://c-jdbc.objectweb.org/current/doc/userGuide/html
(668 words)
|
|
| |
| | MM Mysql Drivers |
 | | It lets developers working with the Java programming language easily build programs and applets that interact with MySQL and connect all corporate data, even in a heterogeneous environment. |  | | MM.MySQL will no longer be distributed from this site, or the SourceForge.net project site. |  | | New, enhanced version of Mark Matthews' Open Source Java driver debuts as "MySQL Connector/J" |
|
http://mmmysql.sourceforge.net
(868 words)
|
|
| |
| | Introduction to Databases for the Web: Pt 4 |
 | | JDBC is Java's version of the DBI module in Perl 5. |  | | And though it still is a bit painful to use Java in an internet setting in which one cannot control the browsers, operating systems, or hardware specs of the users, it can still be worthwhile for you to learn and play with it. |  | | At very least, JDBC is extremely useful for server-side application development in which you can control the environment to a much greater degree. |
|
http://www.databasejournal.com/sqletc/article.php/1431601
(453 words)
|
|
| |
| | JDBC Drivers |
 | | From this page you may search or browse the database of JDBC technology drivers that support the JDBC 2.x and JDBC 1.x APIs. |  | | We also maintain a list of vendors who have endorsed the JDBC API. |  | | We will make every attempt to keep this database up-to-date; we apologize if we have missed some drivers. |
|
http://developers.sun.com/product/jdbc/drivers
(168 words)
|
|
| |
| | JDBC |
 | | How do I insert data in a database table? |  | | How do I create a database through JDBC? |  | | How do I insert a value in a column where the type is datetime? |
|
http://www.esus.com/javaindex/j2ee/javasql/javasql.html
(424 words)
|
|
| |
| | Database - Wikipedia, the free encyclopedia |
 | | One example of a database driver API is JDBC. |  | | Software database drivers are available for most database platforms so that application software can use a common application programming interface (API) to retrieve the information stored in a database. |  | | Software engineering and List of software engineering topics |
|
http://en.wikipedia.org/wiki/Database
(3224 words)
|
|
| |
| | What is JDBC? - A Word Definition From the Webopedia Computer Dictionary |
 | | JDBC is similar to ODBC, but is designed specifically for Java programs, whereas ODBC is language-independent. |  | | JDBC was developed by JavaSoft, a subsidiary of Sun Microsystems. |  | | Since nearly all relational database management systems (DBMSs) support SQL, and because Java itself runs on most platforms, JDBC makes it possible to write a single database application that can run on different platforms and interact with different DBMSs. |
|
http://www.webopedia.com/TERM/J/JDBC.html
(172 words)
|
|
| |
| | dev2dev Online: JDBC |
 | | WebLogic JDBC is an enterprise-class implementation of the JDBC specification which provides numerous extensions to the standard JDBC APIs. |  | | Java Database Connectivity (JDBC) is a standard Java API that consists of a set of classes and interfaces that Java application developers use to access a database and execute SQL statements. |  | | Discussion of Java Database Connectivity (JDBC) with WebLogic |
|
http://dev2dev.bea.com/jdbc/index.html
(484 words)
|
|
| |
| | NodeWorks - Encyclopedia: JDBC type 3 driver |
 | | The JDBC type 3 driver, also known as the network-protocol driver is a database driver implementation which makes use of a middle-tier between the calling program and the database. |  | | The middle-tier (application server) converts JDBC calls directly or indirectly into the vendor-specific database protocol. |  | | This differs from the type 4 driver in that the protocol conversion logic resides not at the client but in the middle-tier. |
|
http://pedia.nodeworks.com/J/JD/JDB/JDBC_type_3_driver
(151 words)
|
|
| |
| | ipedia.com: Java 2 Platform, Enterprise Edition Article |
 | | It uses several technologies, including JDBC and CORBA, and extends their functionality with Enterprise Java Beans, Java Servlets, Java Server Pages and XML technologies. |  | | This allows the developer to create an Enterprise Application that is portable between platforms and scalable, while integrating with several legacy technologies. |  | | The java.sql and javax.sql packages define the Java Database Connectivity (JDBC) API |
|
http://www.ipedia.com/java_2_platform__enterprise_edition.html
(352 words)
|
|
| |
| | Java JDBC Recipes & FAQs |
 | | JDBC is a wonderful tool that lets Java developers easily utilize the power of relational databases. |  | | To make JDBC even easier, we've created the following JDBC recipes that you can easily integrate into your own programs. |  | | We hope you understand that's why these copyright statements are all over the place. |
|
http://www.devdaily.com/java/edu/pj/jdbc/recipes
(169 words)
|
|
| |
| | HA-JDBC: High-Availability JDBC |
 | | Compatible with JDBC RowSet implementations found in Java 1.5. |  | | Support for full JDBC 3.0 (Java 1.4) feature set. |  | | HA-JDBC is a JDBC driver proxy that provides light-weight, transparent, fault tolerant clustering capability to any underlying JDBC driver. |
|
http://ha-jdbc.sourceforge.net
(147 words)
|
|
| |
| | JDBC |
 | | The initial motivation for desupporting SQLJ was it's low adoption by the J2EE commnity however, we found out that it has been largely adopted by database developers. |  | | In the mean time, customers have full access to SQLJ functionalities using -sqlj option of the new Oracle Database 10g JPublisher utility. |  | | We recommend the Oracle JDBC 10g drivers, which are at least 33% faster on average; SQL types to Java types conversion up to 30 times faster (customer feedback). |
|
http://www.oracle.com/technology/tech/java/sqlj_jdbc
(221 words)
|
|
| |
| | WDVL: Using JDBC to Connect to a Database |
 | | To do so, you will need to first connect to the database, which is a fairly simple process. |  | | Once your environment is all set up, you are ready to start sending SQL commands to your database using JDBC. |  | | WDVL: Using JDBC to Connect to a Database |
|
http://www.wdvl.com/Authoring/DB/Intro/jdbc_connect.html
(353 words)
|
|
| |
| | C-JDBC - Home Page |
 | | C-JDBC has won the Derby Code Contest at ApacheCon US 2004! |  | | Vote for C-JDBC in the Java Developer's Journal Reader's choice award in the following categories: |  | | Major contributions are clustering and remote JDBC access to Derby. |
|
http://c-jdbc.objectweb.org
(267 words)
|
|
| |
| | Aust Domains |
 | | Prokmu was founded to provide shared hosting to the discerning user. |  | | Copy xbox games and find other fantastic xbox resources. |  | | Jsp Hosting, Java Hosting, J2ee, Jdbc, Php, Mysql, Web Hosting |
|
http://www.austdomains.com.au/linkers.html
(6468 words)
|
|
| |
| | MySQL AB :: Download Connector/J 3.1 |
 | | If you need commercial, non-GPL, licenses, you can order them |  | | MySQL Connector/J is the official JDBC driver for MySQL. |
|
http://dev.mysql.com/downloads/connector/j/3.1.html
(142 words)
|
|
|