PHP must be compiled --with-mssql in order to use the MS SQL extension.
On Friday 03 October 2003 11:18 pm, [EMAIL PROTECTED] wrote:
> Hello mailing list, I try to connect SQL server through PEAR directly, but
> it doesn't work too, this is the code:
>
> <html><head><title>Test DB Class - PEAR</title></head>
> <body>
> <table border=1>
> <tr><th>Estado</th></tr>
> <?php
> //connect
> require_once('DB.php');
> $db =DB::connect("mssql://[EMAIL PROTECTED]/videoclub");
> if (DB::iserror($db)) {
> die($db->getMessage());
> }
> //issue the query
> $sql ="SELECT * from tablaEstado";
> $q =$db->query($sql);
> if (DB::iserror($q)) {
> die($q->getMessage());
> }
> //generate table
> while ($q->fetchInto($row)) {
> ?>
> <tr><td><?= $row[0] ?></td></tr>
> <?php
> }
> ?>
> </table>
> </body></html>
>
> this is the output
> DB Error: extension not found
>
> If any could give me hand, I will aprecciate, thanks, bye.
--
Evan Nemerson
[EMAIL PROTECTED]
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php