It doesn't seem to have problems that i could attribute due to JDBC drivers.
Regards,
Lance
> --
> You received this message because you are subscribed to the Google Groups "Lift" group.
> To post to this group, send email to lif...@googlegroups.com.
> To unsubscribe from this group, send email to liftweb+u...@googlegroups.com.
> For more options, visit this group at http://groups.google.com/group/liftweb?hl=en.
>
Many Thanks
--
You received this message because you are subscribed to the Google Groups "Lift" group.
To post to this group, send email to lif...@googlegroups.com.
To unsubscribe from this group, send email to liftweb+u...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/liftweb?hl=en.
If you are in process of deciding on drivers you should check out the JTDS driver.
Although Microsoft has its own jdbc driver the JTDS driver http://jtds.sourceforge.net/ (a JDBC 3.0 driver) has proven to be really good.
I have been using it in java enterprise production apps. for many years.
The Microsoft driver http://msdn.microsoft.com/en-us/data/aa937724.aspx has probably also matured allot sins I last tested it ;-)
best regards
Peter Petersson
I know it's a bit offtopic for this thread, but could you expand on
this? I'm currently using jTDS with stored procs quite a bit, and
would like to know what to watch out for.
Thanks,
Sander
Like I said; It might be stable, and mature etc., driver. But, it has
some none-standard issues which makes it a no-go if you care about
portable DB-access code. At least that's my experience.
--
Andreas Joseph Krogh <and...@officenet.no>
Senior Software Developer / CTO
Public key: http://home.officenet.no/~andreak/public_key.asc
------------------------+---------------------------------------------+
OfficeNet AS | The most difficult thing in the world is to |
Rosenholmveien 25 | know how to do a thing and to watch |
1414 Troll�sen | somebody else doing it wrong, without |
I have to admit that after using JTDS for a couple of years I tried the,
at the time, new Microsoft driver (a ms revamped fork of jtds) because I
thought it would be a safer bet (at that time), the driver turned out to
lack in functionality (compared to JTDS) but I am sure it has matured a
lot since then and maybe it has even catch up with (or surpassed) JTDS
best regards
Peter Petersson
It had to do with the way out-parameters were registered to SPs. With
jTDS we had this:
protected static final String BETANM = "@BETANM";
...
cStmt.registerOutParameter(BETANM, VARCHAR);
But that made the code incompatible with other DBs. When we switched to
MS' JDBC-driver we could write it the standard-way without the '@',
which made it work with PostgreSQL as well.