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
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
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
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.
__