Chili!Soft stores its DSN information in the ~/usr/local/casp/asp-apache-3000/
directory, in a file called odbc.ini. This file contains
templates which it uses when creating DSN-less connections, and
is where your DSNs would be put. An example of a DSN for a local
MySQL database might look like this:
[mydatabase]
Driver=/usr/local/casp/odbc/opensource/lib/libmyodbc.so
Server=localhost
Port=3306
Database=mydatabase
User=myuser
Password=Shh!-dont_tell!
Option=
UseCursorLib=1
The DSN name,
enclosed in square brackets, should be the same as the name of the
database you are accessing. If you are connecting to a remote database,
you would replace the value localhost in the Server=
line with the name of the server where the database is (or the TNS
name for Oracle).
Once you have
created your DSN and saved it in the odbc.ini file, you can
then access the database by creating a Connection String in your
ASP code. You can also create a FileDSN, which contains a DSN stored
in a file other than the odbc.ini file.
The connection
string for a DSN connection would look similar to either of these:
connect_string
= "dsn=[mydatabase]"
connect_string="FileDSN=[/usr/local/etc/httpd/vhosts/mysubhost/MyDSNfile.dsn]"
If you want
to create a DSN-less connection, you would need to include the same
connection information from the DSN in the Connection String. A
DSN-less connection string might look like the following:
connect_string
= "Driver={Mysql}; Server=localhost; Database=mydatabase; UID=myuser;
PWD=Shh!-dont_tell!"
|