Re: Microsoft SQL Server and the sql contrib

2008-12-19 Thread Tom Emerson
On Tue, Dec 16, 2008 at 1:15 PM, Scott Jaderholm jaderh...@gmail.com wrote: I'm trying to use the sql contrib with Microsoft SQL Server Express 2005. I've used the jTDS driver for SQL Server 2005 (not Express) without any problems, so if you still have problems with the Microsoft driver you may

Re: Microsoft SQL Server and the sql contrib

2008-12-17 Thread Scott Jaderholm
Thanks for the idea. Although those are definitely necessary steps, unfortunately the problem still persists. On Tue, Dec 16, 2008 at 5:47 PM, Wayne R johnway...@gmail.com wrote: Have a look at http://dertompson.com/2007/10/06/connection-to-mssql-server-express-2005-with-jdbc/ Apparently

Re: Microsoft SQL Server and the sql contrib

2008-12-17 Thread Michael Reid
On Wed, Dec 17, 2008 at 11:00 AM, Scott Jaderholm jaderh...@gmail.com wrote: Thanks for the idea. Although those are definitely necessary steps, unfortunately the problem still persists. Can you get a similar Java program work correctly? i.e. we want to try and separate if this is specific to

Re: Microsoft SQL Server and the sql contrib

2008-12-16 Thread MikeM
To make sure your driver is really on the classpath, try this from the REPL: (. Class (forName com.microsoft.sqlserver.jdbc.SQLServerDriver)) --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Clojure group. To post

Re: Microsoft SQL Server and the sql contrib

2008-12-16 Thread Scott Jaderholm
I don't think that's a problem: user (. Class (forName com.microsoft.sqlserver.jdbc.SQLServerDriver)) com.microsoft.sqlserver.jdbc.SQLServerDriver On Tue, Dec 16, 2008 at 12:21 PM, MikeM michael.messini...@invista.comwrote: To make sure your driver is really on the classpath, try this from