[Hibernate] ms access dialect problem

2002-12-31 Thread Pietro Polsinelli
well g., thanks for support, but I'm getting nowhere. I finally found the keyword for generating autoincrement column via JDBC for access, "counter", but still does not seem to work in this context. public String getIdentityColumnString() { return " counter "; } I tried all vers

[Hibernate] microsoft access dialect 3.1 - some revisions

2002-12-16 Thread Pietro Polsinelli
hi, I see that part of the previous post was cut, so I repost the last part (if I should post differently, maybe directly to Gavin let me know) : 13:17:18,667 DEBUG JDBCExceptionReporter:33 - SQL Exception com.inzoom.adojni.ComException: [Microsoft][ODBC Microsoft Access Driver]Optional

[Hibernate] microsoft access dialect 3 - some revisions

2002-12-16 Thread Pietro Polsinelli
hi, this is a revised version of the dialect: public class MSAccessDialect extends Dialect { public MSAccessDialect() { super(); register( Types.BIT, "BIT" ); register( Types.BIGINT, "INTEGER" ); register( Types.SMALLINT, "S

[Hibernate] microsoft access dialect

2002-12-13 Thread Pietro Polsinelli
hi, I have began developing a dialect for working with   Microsoft Access using   InfoZoom JDBC driver. I hope it will be of some use. I do NOT claim that this will work in general; it just works for my current applications. __