skip to main content
Using the Driver : Configuring and Connecting to Data Sources : Configuring the Product on macOS : File Data Sources
  

Try DataDirect Drivers Now
File Data Sources
The Driver Manager on macOS supports file data sources. The advantage of a file data source is that it can be stored on a server and accessed by other machines, regardless of platform. See "Getting Started" for a general description of ODBC data sources.
A file data source is simply a text file that contains connection information. It can be created with a text editor. The file normally has an extension of .dsn.
For example, a file data source for the driver would be similar to the following:
[ODBC]
Driver=DataDirect 8.0 Oracle Wire Protocol
Port=1522
HostName=OraServer5
LogonID=JOHN
Servicename=SALES.US.ACME.COM
CatalogOptions=1
It must contain all basic connection information plus any optional attributes. Because it uses the "DRIVER=" keyword, an odbcinst.ini file containing the driver location must exist (see "DSN-less Connections").
The file data source is accessed by specifying the "FILEDSN=" instead of the "DSN=" keyword in a connection string, as outlined in the ODBC specification. The complete path to the file data source can be specified in the syntax that is normal for the machine on which the file is located. For example, on Windows:
FILEDSN=C:\Program Files\Common Files\ODBC\DataSources\Oracleacct.dsn
or, on UNIX and Linux:
FILEDSN=/home/users/john/filedsn/Oracleacct.dsn
or, on macOS:
FILEDSN=/Library/ODBC/filedsn/Oracleacct.dsn
If no path is specified for the file data source, the Driver Manager uses the DefaultDSNDir property, which is defined in the [ODBC File DSN] setting in the odbc.ini file to locate file data sources (see "Data Source Configuration on macOS" for details). If the [ODBC File DSN] setting is not defined, the Driver Manager uses the InstallDir setting in the [ODBC] section of the odbc.ini file. The Driver Manager does not support the SQLReadFileDSN and SQLWriteFileDSN functions.
As with any connection string, you can specify attributes to override the default values in the data source:
FILEDSN=/opt/odbc/filedsn/Oracleacct.dsn;UID=james;PWD=test01