Developers community number 1 connection string reference

Connection strings for Pervasive

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

Pervasive PSQL ADO.NET Data Provider

Type .NET Framework Class Library
Usage Pervasive.Data.SqlClient.PsqlConnection
Manufacturer Pervasive

Standard

Server Name=myServerAddress;Database Name=myDataBase;User ID=myUsername;Password=myPassword;
 
 

Disabling connection pooling

Server Name=myServerAddress;Database Name=myDataBase;User ID=myUsername;Password=myPassword;Pooling=False;
 
 

Pervasive OLE DB Provider

Type OLE DB Provider
Usage Provider=PervasiveOLEDB
Manufacturer Pervasive

Using database name

Provider=PervasiveOLEDB;Data Source=myServerAddress;
 
 

Using path to data files

Provider=PervasiveOLEDB;Data Source=C:\datafilesDirectory;
 
 

Remote connection

Provider=PervasiveOLEDB;Data Source=myDataBase;Location=myServerAddress;
 

.NET Framework Data Provider for OLE DB

Type .NET Framework Wrapper Class Library
Usage System.Data.OleDb.OleDbConnection
Manufacturer Microsoft

Bridging to Pervasive OLE DB Provider

This is just one connection string sample for the wrapping OleDbConnection class that calls the underlying OLEDB provider. See respective OLE DB provider for more connection strings to use with this class.

Provider=PervasiveOLEDB;Data Source=myServerAddress;
 
 

Pervasive ODBC Client Interface

Type ODBC Driver
Usage Driver={Pervasive ODBC Client Interface}
Manufacturer Pervasive

Standard

Driver={Pervasive ODBC Client Interface};ServerName=myServerAddress;dbq=@dbname;
 

.NET Framework Data Provider for ODBC

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

Bridging to Pervasive ODBC Client Interface

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={Pervasive ODBC Client Interface};ServerName=myServerAddress;dbq=@dbname;
 
 
Copyright © 2012 ConnectionStrings.com   |   All Rights Reserved   |   Powered by CSAS   |   Send feedback, articles, requests and more connection strings here.