|
From: danimian <mia...@gm...> - 2009-09-16 12:49:08
|
Hi,
i have written the following code in wix to build a localhost db2 odbc
driver connection.
.msi is running without any problem.
First question is about the written code, is it right to build the
connection? or missing something?
Second question how can i check whether the connection was successfull or
not?
here is code:
<Component Id="MyComponent" Guid="myGuid" DiskId="1">
<ODBCDataSource Id="db2connection" Name="myDataBase"
Registration="machine" DriverName="IBM DB2 ODBC DRIVER" >
<Property Id="Server" Value="localhost" />
<Property Id="Database" Value="myDatabase" />
<Property Id="Port" Value="50000" />
<Property Id="User" Value="db2admin" />
<Property Id="Passwort" Value="password" />
</ODBCDataSource>
</Component>
<Feature Id="MyFeature" Title="TheODBCDSNCreate" Level="1">
<ComponentRef Id="MyComponent" />
</Feature>
Please explain, I am new to wix.
Best Regards
Adnan
--
View this message in context: http://n2.nabble.com/How-to-Build-Check-a-localhost-connection-with-db2-odbc-tp3655921p3655921.html
Sent from the wix-users mailing list archive at Nabble.com.
|