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.

------------------------------------------------------------------------------
Come build with us! The BlackBerry&reg; Developer Conference in SF, CA
is the only developer event you need to attend this year. Jumpstart your
developing skills, take BlackBerry mobile applications to market and stay 
ahead of the curve. Join us from November 9&#45;12, 2009. Register now&#33;
http://p.sf.net/sfu/devconf
_______________________________________________
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

Reply via email to