Thanks, David.
I got my question answered when I looked into the Supported Platforms -> Databases section at the
http://boss.bekk.no/boss/middlegen/plat ... abase.html
Should've read that before!!!
trying to find a remedy to my problem I moved my database to the MSSQL Server 2000 and downloaded the appropriate JDBC driver com.microsoft.jdbc.sqlserver.SQLServerDriver
off Microsoft's site.
But I seem to have another problem so that Middlegen reports that could successfully connects to the database but cannot find any tables in it.
Here's my settings:
<property name="database.script.file" value="D:/Work/GWS/gws.proj/automated/gws.ddl"/>
<property name="database.driver.classpath" value="${middlegen.lib}"/>
<property name="database.driver.file" value="${middlegen.lib}/mssqlserver.jar"/>
<property name="database.driver" value="com.microsoft.jdbc.sqlserver.SQLServerDriver"/>
<property name="database.url" value="jdbc:microsoft:sqlserver://localhost:1433;databasename=gws"/>
<property name="database.userid" value="sa"/>
<property name="database.password" value=""/>
<property name="database.schema" value=""/>
<property name="database.catalog" value=""/>
<property name="jboss.datasource.mapping" value="MS SQLSERVER"/>
<!--property name="jboss.datasource.mapping" value="MS SQLSERVER2000"/-->
What could be wron with that? Do I have to specify a SCHEMA name AND/OR catalog?
Thanks in advance.