|
|
|
The string you use to connect to Solid via ODBC is determined by the Listen
setting in the [Com] section of your solid.ini file. By default this entry is:
[Com]
Listen=UPipe SOLID, TCP/IP 1313
If you are running PHP on the same box as Solid, you can connect to it using a
Unix pipe:
$conn=odbc_Connect("UPipe SOLID",$username, $password);
(you may need to adjust the connection string if you have something other than
the default in your solid.ini).
If Solid is on a different machine, or if you would prefer to use a TCP/IP
socket to connect to the database, you can connect using the following:
$conn=odbc_Connect("tcp/ip machinename.com 1313", $username, $password);
where machinename.com is the name of the machine where Solid resides and 1313
is the port Solid is listening on (1313 by default). |
|
| A very simple database abstraction layer for the PHP 3.0 ODBC module. Categories : ODBC, PHP | | | A set of functions sitting on top of the abstraction layer that makes it a little easier to do SQL stuff. Documentation is within Categories : Databases, ODBC, Complete Programs, PHP | | | UDMSearch - a free search engine, indexing system. Categories : Search Engines, Linux, PHP, MySQL, ODBC | | | odbc_autocommit -- Toggle autocommit behaviour Categories : PHP, PHP Functions, ODBC | | | How to access MS Excel spread sheets from PHP Categories : PHP, Excel, ODBC, Databases | | | How to connect to MS SQL 6.x+ database server via ODBC functions of
PHP3 compiled with iODBC and Openlink drivers under Linux. Categories : Databases, MS SQL Server, PHP, ODBC | | | This is a small Web Phone Database which is written in PHP3
and utilizes a ODBC Data Source. Categories : PHP, ODBC | | | Dynamic WHERE CLAUSE depending on number of FORM FIELDS Categories : ODBC, General SQL, PHP, Complete Programs, Databases | | | Voting Machine with Access 97 Categories : PHP, ODBC, WinNT, MS Access, Complete Programs | | | Query2Report : Generating Html, Pdf and Csv Reports from SQL Query Categories : PHP, PHP, HTML, PDF, Excel | | | Modification of Shane Caraveo's guestbook. Uses ODBC...some code modifications Categories : ODBC, Databases, Complete Programs, PHP | | | Forum with Access 97 Categories : MS Access, Complete Programs, PHP, ODBC, WinNT | | | php for odbc /* connect to access from odbc */ Categories : PHP Classes, ODBC, MS Access, PHP | | | db2tab.php - Simple scripts to access IBM DB2 Universal DataBase tables through PHP ODBC funtions. Categories : Databases, PHP, ODBC | | | ADODB Database Wrapper Abstraction Library for PHP: MySQL, MSSQL,
Oracle, Interbase,ODBC, Microsoft Access and FoxPro. Categories : PHP Classes, Databases, PHP, General SQL, ODBC | |
|
|
|