Im trying to figure out Sybase and I cant even seem to get past the first
step of connecting
Heres my code:
<?php
                $con = sybase_connect("localhost", "EXP", "SQL");
                sybase_select_db("EXPADMIN");
                $qry = sybase_query("select * from EXP.access", $con);

                echo sybase_result($qry, 1, 1);

                sybase_close($con);
        ?>
Heres the error:
Fatal error: Call to undefined function: sybase_connect() in F:\Program
Files\Apache Group\Apache\htdocs\index.php on line 8



-- 
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to