Connection String in IBM Informix OLE DB Provider

This article deals with basic syntax related to Connection String in IBM Informix OLE DB Provider.
  • 5285
Introduction

Following is the basic syntax to be used as a standard string for IBM Informix OLE DB Provider.

Provider=Ifxoledbc;Data Source=datasource@serverName;User ID=Username;Password=Password;

By using the following string we can implement security in our database and can our data secure. But sometimes it is necessary to turn off the security checks as it it becomes haste to again go through a procedure of security checks. To disable the security check use the following string.

Provider=Ifxoledbc;Data Source=datsource@serverName;User ID=Username;Password=Password;Persist Security Info=false;

NOTE: The following connection string turns the security information to false. to turn on the security  information change Security Info=false to Security Info=true in the string.

Further Readings

You may also want to read these related articles.

Ask Your Question

Got a programming related question? You may want to post your question here

Programming Answers here

Categories

More Articles

© 2020 DotNetHeaven. All rights reserved.