With an ODBC connection, you can connect to any
database, on any computer in your network, as long as an ODBC
connection is available. Here is how to create an ODBC connection to a
MS Access Database.
Create an ODBC Connection
With an ODBC connection, you can connect to any database, on any
computer in your network, as long as an ODBC connection is available.
Here is how to create an ODBC connection to a MS Access Database:
Open the Administrative Tools icon in your Control Panel.
Double-click on the Data Sources (ODBC) icon inside.
Choose the System DSN tab.
Click on Add in the System DSN tab.
Select the Microsoft Access Driver. Click Finish.
In the next screen, click Select to locate the database.
Give the database a Data Source Name (DSN).
Click OK.
Note that this configuration has to be done on the computer where your
web site is located. If you are running Internet Information Server
(IIS) on your own computer, the instructions above will work, but if
your web site is located on a remote server, you have to have physical
access to that server, or ask your web host to to set up a DSN for you
to use.
--------------------------------------------------------------------------------
Connecting to an ODBC
The odbc_connect() function is used to connect to an ODBC data source.
The function takes four parameters: the data source name, username,
password, and an optional cursor type.
The odbc_exec() function is used to execute an SQL statement.
Example
The following example creates a connection to a DSN called northwind,
with no username and no password. It then creates an SQL and executes
it:
Code :
// showhide source code
// showhide line numbers
1 $conn=odbc_connect('northwind','','');
2 $sql="SELECT * FROM customers";
3 $rs=odbc_exec($conn,$sql);
--------------------------------------------------------------------------------
Retrieving Records
The odbc_fetch_rows() function is used to return records from the
result-set. This function returns true if it is able to return rows,
otherwise false.
The function takes two parameters: the ODBC result identifier and an optional row number:
--------------------------------------------------------------------------------
Retrieving Fields from a Record
The odbc_result() function is used to read fields from a record. This
function takes two parameters: the ODBC result identifier and a field
number or name.
The code line below returns the value of the first field from the record:
Code :
// showhide source code
// showhide line numbers
1 $compname=odbc_result($rs,1)
The code line below returns the value of a field called "CompanyName":
Code :
// showhide source code
// showhide line numbers
1
2 $compname=odbc_result($rs,"CompanyName");
--------------------------------------------------------------------------------
Closing an ODBC Connection
The odbc_close() function is used to close an ODBC connection.
--------------------------------------------------------------------------------
An ODBC Example
The following example shows how to first create a database connection,
then a result-set, and then display the data in an HTML table.
Code :
// showhide source code
// showhide line numbers
1 <html>
2 <body><?php
3 $conn=odbc_connect('northwind','','');
4 if (!$conn)
5 {exit("Connection Failed: " . $conn);}
6 $sql="SELECT * FROM customers";
7 $rs=odbc_exec($conn,$sql);
8 if (!$rs)
9 {exit("Error in SQL");}
10 echo "<table><tr>";
11 echo "<th>Companyname</th>";
12 echo "<th>Contactname</th></tr>";
13 while (odbc_fetch_row($rs))
14 {
15 $compname=odbc_result($rs,"CompanyName");
16 $conname=odbc_result($rs,"ContactName");
17 echo "<tr><td>$compname</td>";
18 echo "<td>$conname</td></tr>";
19 }
20 odbc_close($conn);
21 echo "</table>";
22 ?></body>
23 </html>
|