Checking your JDBC Driver Version

coldfusion

Macromedia recently updated their JDBC driver technote, but I wasn't sure if I already had the 3.3 driver installed (since they may have just updated the text in the technote). So I wrote some code to check what version of the jdbc driver my server was running, and sure enough I needed to update it:

<cfset jdbcDriver = CreateObject("java", "macromedia.jdbc.sqlserver.SQLServerDriver")>
<cfoutput>
#jdbcDriver.getMajorVersion()#.#jdbcDriver.getMinorVersion()#
</cfoutput>

After you install the 3.3 drivers, the result of this code should be "3.3", if it says otherwise, you can update your drivers.



Related Entries

3 people found this page useful, what do you think?

 Download FuseGuard WAF for ColdFusion

Trackbacks

Trackback Address: 118/BC2705528738D43D1E72B9716F88D1CC

Comments

On 03/31/2004 at 6:57:05 PM EST Pete Freitag wrote:
1
FYI I'm using the java.sql.Driver interface, all jdbc drivers implement this interface.

On 04/12/2004 at 11:32:27 AM EDT Mario Ciliotta wrote:
2
How would I be able to get the version of the Oracle Drivers I am using.

On 04/13/2004 at 2:14:32 AM EDT Pete Freitag wrote:
3
The Macromedia Oracle Driver class name is macromedia.jdbc.oracle.OracleDriver just replace that as the second argument of the createObject function. But since the oracle driver is contained in the macromedia_drivers.jar file along with SQL Server, and other drivers you should get the same results. You can replace the class name with any JDBC driver class name, and run this code.

On 11/09/2004 at 7:36:00 PM EST Mirza H Ahmed wrote:
4
hi, i cant fix it. i have oracle server in a different ip address and i am using mx. i cant figure out the jdbc url, what is driver class, driver name?

On 03/11/2005 at 12:29:48 PM EST Dinesh Pandey wrote:
5
public static void displayDbProperties(Connection con){ java.sql.DatabaseMetaData dm = null; java.sql.ResultSet rs = null; try{ if(con!=null){ dm = con.getMetaData(); System.out.println("\nDriver Information"); System.out.println("\tDriver Name: "+ dm.getDriverName()); System.out.println("\tDriver Version: "+ dm.getDriverVersion ()); System.out.println("\nDatabase Information "); System.out.println("\tDatabase Name: "+ dm.getDatabaseProductName()); System.out.println("\tDatabase Version: "+ dm.getDatabaseProductVersion()); System.out.println("\tMaximum Connection (If zero--> no limit): "+dm.getMaxConnections()); System.out.println("\tNumeric Functions: "+dm.getNumericFunctions()); System.out.println("Avalilable Catalogs "); rs = dm.getCatalogs(); while(rs.next()){ System.out.println("\tcatalog: "+ rs.getString(1)); } rs.close(); rs = null; }else System.out.println("Error: No active Connection"); }catch(Exception e){ e.printStackTrace(); } dm=null; } }

On 05/12/2006 at 11:24:19 AM EDT end-user wrote:
6
If you're looking for alternative JDBC drivers, try jTDS from SourceForge.net. It's the *only* JDBC driver that will support SSL connections to your MSSQL server!

On 02/03/2011 at 1:15:09 PM EST Shyloh Jacobs wrote:
7
Thank you for this post! I am sad that I missed the vote although I find this as useful as openemr! Keep up the good work, I am going to refer a few friends to this site I think they could benefit from it. http://www.mmfemr.com

On 02/03/2011 at 1:15:17 PM EST Shyloh Jacobs wrote:
8
Thank you for this post! I am sad that I missed the vote although I find this as useful as openemr! Keep up the good work, I am going to refer a few friends to this site I think they could benefit from it.

Post a Comment




  



Spell Checker by Foundeo

Recent Entries



foundeo


did you hack my cf?