Re: Debian & mssql_init

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



"Damien Babilon" <damien@xxxxxxxxxxxx> wrote in message
news:200407140815.AA245367106@xxxxxxxxxxxxxxx
> the mssql_connect function work right, but php give me back this message
when I try mssql_init:
> Fatal error: Call to undefined function: mssql_init() in
/var/www/eurogsmtest/test.php on line XX

Shouldn't you use mssql_init() in a mssql query, not in the body of the php
script?

I can't say that this works, but I'd go for something like:

$link = mssql_connect;  // This sets up your SQL link.
$sql = "mssql_init()";  // This is the SQL command you'd like PHP to run for
you
$result = mssql_query($sql, $link);  // If $result = FALSE, there was a
problem.  Otherwise, it worked.

-P

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


[Index of Archives]     [PHP Home]     [PHP Users]     [Postgresql Discussion]     [Kernel Newbies]     [Postgresql]     [Yosemite News]

  Powered by Linux