Justtechjobs.com Find a programming school near you






Online Campus Both


php-db | 2004071

[PHP-DB] Re: Debian & mssql_init From: Peter Westergaard (peter <email protected>)
Date: 07/14/04

"Damien Babilon" <damien <email protected>> wrote in message
news:200407140815.AA245367106 <email protected>
> 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