Developers community number 1 connection string reference

Connection strings for Ingres

Community Forums
Find solutions and post questions regarding connection string related issues.

ODBC Driver for Ingres

Type ODBC Driver
Usage Driver=Ingres
Manufacturer OpenLink Software

DSN-less

Provider=MSDASQL;DRIVER=Ingres;SRVR=xxxxx;DB=xxxxx;Persist Security Info=False;Uid=myUsername;Pwd=myPassword;SELECTLOOPS=N;Extended Properties="SERVER=xxxxx;DATABASE=xxxxx;SERVERTYPE=INGRES";

Important note!<br/>The quota " in the string needs to be escaped using your language specific escape syntax.<br/> c#, c++&nbsp;&nbsp;&nbsp;\"<br/> VB6, VBScript&nbsp;&nbsp;&nbsp;""<br/> xml (web.config etc)&nbsp;&nbsp;&nbsp;&amp;quot;<br/> or maybe use a single quota '.

 
 

.NET Framework Data Provider for ODBC

Type .NET Framework Wrapper Class Library
Usage System.Data.Odbc.OdbcConnection
Manufacturer Microsoft

Bridging to ODBC Driver for Ingres

This is just one connection string sample for the wrapping OdbcConnection class that calls the underlying ODBC Driver. See respective ODBC driver for more connection strings to use with this class.

DRIVER=Ingres;SRVR=xxxxx;DB=xxxxx;Persist Security Info=False;Uid=myUsername;Pwd=myPassword;SELECTLOOPS=N;Extended Properties="SERVER=xxxxx;DATABASE=xxxxx;SERVERTYPE=INGRES";
 
 
Copyright © 2012 ConnectionStrings.com   |   All Rights Reserved   |   Powered by CSAS   |   Send feedback, articles, requests and more connection strings here.