alvinalexander.com | career | drupal | java | mac | mysql | perl | scala | uml | unix  

What this is

This file is included in the DevDaily.com "Java Source Code Warehouse" project. The intent of this project is to help you "Learn Java by Example" TM.

Other links

The source code

The content of this directory:

NOTE: If this folder does not contain the driver for your database, please 
      look at the short guide in the header of sql/mvnForum_<yourdatabase>.sql
      Ex: The driver for Oracle is in sql/mvnForum_oracle9.sql


mysql-connector-java-3.0.16-ga-bin.jar 
    Description : driver for Mysql (Connector/J)
    Driver      : com.mysql.jdbc.Driver
    Url (3.x 4.0.x) : jdbc:mysql://<host>/?useUnicode=true&characterEncoding=utf-8
    Url (4.1.x)     : jdbc:mysql://localhost/mvnforum?useServerPrepStmts=false
    Version     : 3.0.16-ga



mysql-connector-java-3.1.6-bin.jar (for MySql 4.1.x and later)
    Description : driver for Mysql (Connector/J)
    Driver      : com.mysql.jdbc.Driver
    Url (4.1.x) : jdbc:mysql://localhost/mvnforum?useServerPrepStmts=false
    Version     : 3.1.6
    Read more   : http://dev.mysql.com/doc/connector/j/en/cj-jdbc-upgrading-issues.html



hsqldb.jar 
    Description : driver and database engine for hsqldb
    Driver      : org.hsqldb.jdbcDriver
    Url         : jdbc:hsqldb:file:<database>
    Version     : 1.7.3_2
    Note        : latest driver is here http://hsqldb.sourceforge.net



postgresql.jar 
    Description : driver for PostgreSql 
    Driver      : org.postgresql.Driver
    Url         : jdbc:postgresql://host:port/database
    Version     : 7.3
    Note        : latest driver is here http://jdbc.postgresql.org/download.html
                  JDBC driver for postgreSQL usually bundled with the Linux distro



jtds-1.1.jar 
    Description : driver for MS Sql Server or Sybase
    Driver      : net.sourceforge.jtds.jdbc.Driver
    Url         : jdbc:jtds:sqlserver://<hostname>[:][;=[;...]]
                  jdbc:jtds:sybase://<hostname>[:][;=[;...]]
    Version     : 1.1
    Note        : latest driver is here http://jtds.sourceforge.net/
    Note        : <port> is the port the server is listening to (with a default of 1433 for SQL Server 
                  and 4000 for Sybase) and <database> is the database name -- or catalog 
                  in the JDBC terminology -- (default is 'master').

... this post is sponsored by my books ...

#1 New Release!

FP Best Seller

 

new blog posts

 

Copyright 1998-2021 Alvin Alexander, alvinalexander.com
All Rights Reserved.

A percentage of advertising revenue from
pages under the /java/jwarehouse URI on this website is
paid back to open source projects.