RE: [Hibernate] New Version of SQL Server 2000 driver?

2003-12-06 Thread Sandeep Dath
es are not being handled by PreparedStatement. DEF123 | Driver modified to improve performance of DatabaseMetaData.getTables(). DEF129 | Driver modified to utilize VM to obtain trasliterations of charactersets not explicitly listed in the transliteration.properties file. ---Fixes--

[Hibernate] New Version of SQL Server 2000 driver?

2003-12-06 Thread Sandeep Dath
Title: Message I believe there is a new version of the SQL2k driver (a new service pack basically) from Microsoft. I was wondering if any of the old issues that prevented the driver from being supported have been officially fixed?   Sandeep   http://www.microsoft.com/downloads/details.aspx?Fa

RE: [Hibernate] Criteria with Queries, not classes

2003-11-21 Thread Sandeep Dath
Hi, This is tangential to the subject, and is probably an already-closed-or-dismissed-as-irrelevant issue, but I was wondering why I cannot do something like: Session.find/delete("from Class as glass where glass.id in (?), listOfIds, Hibernate.COLLECTION); Or something like that Also is there a

RE: [Hibernate] Urgent - Is this possible through hibernate??

2003-11-19 Thread Sandeep Dath
Vivian, You shouldn't be using Hibernate for this sort of thing. Either write a simple JDBC-based framework on your own. Or pick something that is publicly available. If you are trying to automate an ETL process, then you could try http://octopus.enhydra.org/ (LGPL). I am not sure this is what y

RE: [Hibernate] EHCache

2003-11-13 Thread Sandeep Dath
Amen to this. Perhaps there could also be a *little* more documentation (all supporting caching frameworks) on caching, and caching best practices? Sandeep -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Gavin King Sent: Thursday, November 13, 2003 7:18

[Hibernate] Sigh. Hibernate is so cool that I could..

2003-11-05 Thread Sandeep Dath
Title: Message Hi,   Everytime that the Hibernate team says that Hibernate is "oh so cool", and "it produces oh so optimized SQL" and "its oh so fast", I usually concur. However, I have often have this lingering, nagging feeling in my mind as to "well, how optimal can an ORM-based solution *

RE: [Hibernate] 2.1 beta 5

2003-10-30 Thread Sandeep Dath
Dud. Ignore that. Sorry. -Original Message- From: Sandeep Dath [mailto:[EMAIL PROTECTED] Sent: Thursday, October 30, 2003 6:39 PM To: 'Gavin King'; 'hibernate list' Subject: RE: [Hibernate] 2.1 beta 5 Gavin, What's the status with Swarmcache? Sandeep. -O

RE: [Hibernate] 2.1 beta 5

2003-10-30 Thread Sandeep Dath
Gavin, What's the status with Swarmcache? Sandeep. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Gavin King Sent: Thursday, October 30, 2003 5:12 PM To: hibernate list Subject: [Hibernate] 2.1 beta 5 P.S. To anyone who didn't notice, I released 2.1 bet

[Hibernate] Swarmcache, HashtableCacheProvider

2003-10-28 Thread Sandeep Dath
Title: Message Is SwarmCache support active in Beta 4? What about HashtableCacheProvider? Is the use of either of these documented Sandeep

RE: [Hibernate] Re: Support for Axion (http://axion.tigris.org)

2003-10-20 Thread Sandeep Dath
se that is typically done? Sandeep. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Christian Bauer Sent: Sunday, October 19, 2003 5:12 AM To: [EMAIL PROTECTED] Subject: [Hibernate] Re: Support for Axion (http://axion.tigris.org) On 18 Oct (20:42), Sandeep

[Hibernate] Support for Axion (http://axion.tigris.org)

2003-10-18 Thread Sandeep Dath
Title: Message Gavin/Christian,   Axion is "a small, fast, open source relational database system (RDBMS) supporting SQL and JDBC written in and for the Java programming language." and is hosted at http://axion.tigris.org." Its open source and Uses an Apache-style license. You can find a list

RE: [Hibernate] How to model this using hibernate? (OR mapping quest)

2003-10-18 Thread Sandeep Dath
main_roles">user_id"/>DomainRole">domain" class="Domain" column="domain_id"/>role" class="Role" column="role_id"/>   Sandeep Dath -Original Message-From:

RE: [Hibernate] Problem with Hibernate and MSSQL JDBC diver when Rereading columns

2003-10-16 Thread Sandeep Dath
sage- From: Eric Pugh [mailto:[EMAIL PROTECTED] Sent: Thursday, October 16, 2003 12:00 PM To: 'Sandeep Dath'; [EMAIL PROTECTED] Subject: RE: [Hibernate] Problem with Hibernate and MSSQL JDBC diver when Rereading columns I agree. The Microsoft JDBC driver was purchased by Microsoft

RE: [Hibernate] Problem with Hibernate and MSSQL JDBC diver when Rereading columns

2003-10-16 Thread Sandeep Dath
sday, October 16, 2003 11:06 AM To: 'Sandeep Dath'; [EMAIL PROTECTED] Subject: RE: [Hibernate] Problem with Hibernate and MSSQL JDBC diver when Rereading columns Unfortunantly I only have the microsoft one.. I had heard jTDS was better, and faster, but have never found the

RE: [Hibernate] Problem with Hibernate and MSSQL JDBC diver when Rereading columns

2003-10-16 Thread Sandeep Dath
Eric, Have you tried using the jTDS driver? If so, what were your results? I believe jTDS passed all the Hibernate tests? (Is that a true statement?) Sandeep -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Eric Pugh Sent: Thursday, October 16, 2003 10:4

RE: [Hibernate] build structure

2003-08-27 Thread Sandeep Dath
Les, Sounds interesting, but Java lib directories are getting ever more complex. Between the Jakarta set of tools and other little pieces that go into making a large framework tick - you can easily end up with version mismatches. $APP_HOMEs need consistent usage for them to work. My opinion is th

RE: [Hibernate] gavin's blog :)

2003-08-24 Thread Sandeep Dath
Personally, I think that we just came across Gavin's secret, alternate identity. By day Gavin is simply good ol' Gavin, but in times of peril and distress, and when there's trouble afoot, he becomes, um, er, Gavin King? H... Sandeep. -Original Message- From: [EMAIL PROTECTED] [mailto:

[Hibernate] Flushing on rollback

2003-08-18 Thread Sandeep Dath
I've a question about flushing.  My data access block functionally maps to the following:   Session sess = factory.openSession();Transaction tx;try { tx = sess.beginTransaction(); //do some work ... tx.commit();}catch (Exception e) { if (tx!=null) tx.rollback(); th

[Hibernate] Spring Framework Integration along with Open Session In View

2003-08-14 Thread Sandeep Dath
Hi,   I have a Maverick-Hibernate-DAO based project that uses the Open Session In View pattern. Now, I am trying to retro-integrate the Spring Framework into the mix.   Juergen's docu was excellent, but I was wondering (before I end up doing it all myself the hard way) if anybody had used