From: Date: January 7 2006 2:05am Subject: svn commit - mysqldoc@docsrva: r714 - in trunk: . refman-4.1 refman-5.0 refman-5.1 refman-common tools List-Archive: http://lists.mysql.com/commits/732 Message-Id: <200601070105.k0715HB6032298@docsrva.mysql.com> Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Author: paul Date: 2006-01-07 02:05:13 +0100 (Sat, 07 Jan 2006) New Revision: 714 Log: r5942@frost: paul | 2006-01-06 19:04:13 -0600 Add markup. Modified: trunk/ trunk/refman-4.1/connector-j.xml trunk/refman-5.0/connector-j.xml trunk/refman-5.1/connector-j.xml trunk/refman-common/titles.en.ent trunk/tools/xmlformat.conf Property changes on: trunk ___________________________________________________________________ Name: svk:merge - b5ec3a16-e900-0410-9ad2-d183a3acac99:/mysqldoc-local/mysqldoc/trunk:5912 bf112a9c-6c03-0410-a055-ad865cd57414:/mysqldoc-local/mysqldoc/trunk:1994 + b5ec3a16-e900-0410-9ad2-d183a3acac99:/mysqldoc-local/mysqldoc/trunk:5942 bf112a9c-6c03-0410-a055-ad865cd57414:/mysqldoc-local/mysqldoc/trunk:1994 Modified: trunk/refman-4.1/connector-j.xml =================================================================== --- trunk/refman-4.1/connector-j.xml 2006-01-06 23:10:10 UTC (rev 713) +++ trunk/refman-4.1/connector-j.xml 2006-01-07 01:05:13 UTC (rev 714) @@ -95,7 +95,7 @@ The DriverManager needs to be told which JDBC drivers it should try to make Connections with. The easiest way - to do this is to use Class.forName() on the + to do this is to use Class.forName() on the class that implements the java.sql.Driver interface. With MySQL Connector/J, the name of this class is com.mysql.jdbc.Driver. With this method, you @@ -106,7 +106,7 @@ The following section of Java code shows how you might register - MySQL Connector/J from the main() method of + MySQL Connector/J from the main() method of your application: @@ -134,7 +134,7 @@ DriverManager, you can obtain a Connection instance that is connected to a particular database by calling - DriverManager.getConnection(): + DriverManager.getConnection(): @@ -145,9 +145,9 @@ This example shows how you can obtain a Connection instance from the DriverManager. There are a few different - signatures for the getConnection() method. - You should see the API documentation that comes with your JDK - for more specific information on how to use them. + signatures for the getConnection() + method. You should see the API documentation that comes with + your JDK for more specific information on how to use them. @@ -170,9 +170,9 @@ - Once a Connection is established, it can be - used to create Statement and - PreparedStatement objects, as well as + Once a Connection is established, it + can be used to create Statement and + PreparedStatement objects, as well as retrieve metadata about the database. This is explained in the following sections. @@ -191,7 +191,7 @@