You are not logged in.
Pages: 1
In Line 415
case aProperties.DBMS of
dSQLite, dFirebird, dPostgreSQL, dMySQL, dDB2:
fDatabase.Database := UTF8ToString(fProperties.DatabaseName);
pls add dMSSQL ,I test OK
Offline
fConnectionProps := TSQLDBUniDACConnectionProperties.Create
(TSQLDBUniDACConnectionProperties.URI(dMSSQL, HostPort), m_dbinfo.dbname,
m_dbinfo.dbUser, m_dbinfo.DBPassword);
I had add ,but cashed.
so , I add
case aProperties.DBMS of
dSQLite, dFirebird, dPostgreSQL, dMySQL,dMSSQL, dDB2:
fDatabase.Database := UTF8ToString(fProperties.DatabaseName);
It is working now.
Offline
dSQLite, dFirebird, dPostgreSQL, dMySQL,dMSSQL, dDB2:
Less of 'dMSSQL'
Offline
Please try http://synopse.info/fossil/info/67933a8e02
Thanks for the report.
Offline
Pages: 1