I managed to get my application working with a few minor issues:
- can't use SSL connection to MSSQL, nor from client, nor forced from server
- can't use the istance and db discovery in my login form: I have to specify all the connection parameters [IP,PORT] (not istance name) [user] [pass] and [database]
I created a clean prefix and installed this with winetricks (forcing 32 bit 'cause I use 64 on system):
Code: Select all
ARCH=win32 WINEPREFIX=~/.myappwineprefix winetricks mdac28 native_mdac
Code: Select all
ARCH=win32 WINEPREFIX=~/.myappwineprefix wine MyApp.exe
if I try installing nativeclient or secur32 and crypt32 my app will stop working and will not connect again to the dbms: have to remove the prefix and reinstall only mdac28 and native_mdac
(i'm using wine-1.7.14 from ppa:ubuntu-wine/ppa)