Resource Types
There are two resource types used in the mSQL module. The
first one is the link identifier for a database connection,
the second a resource which holds the result of a query.
Predefined Constants
The constants below are defined by this extension, and will
only be available when the extension has either been compiled
into PHP or dynamically loaded at runtime.
MSQL_ASSOC (integer)
MSQL_NUM (integer)
MSQL_BOTH (integer)
Examples
This simple example shows how to connect, execute a query,
print resulting rows and disconnect from a mSQL database.
Example 1. mSQL usage example
<?php
/* Connecting, selecting database */
$link = msql_connect('localhost', 'username', 'password')
or die('Could not connect : ' . msql_error($link));
msql_select_db('database')
or die('Could not select database', $link);
/* Issue SQL query */
$query = 'SELECT * FROM my_table';
$result = msql_query($query, $link) or die('Query failed
: ' . msql_error($link));
/* Printing results in HTML */
echo "<table>\n";
while ($row = msql_fetch_array($result, MSQL_ASSOC)) {
echo "\t<tr>\n";
foreach ($row as $col_value) {
echo "\t\t<td>$col_value</td>\n";
}
echo "\t</tr>\n";
}
echo "</table>\n";
/* Free result set */
msql_free_result($result);
/* Close connection */
msql_close($link);
?>
|