$result = mssql_query($query) or die(mssql_get_last_message());

Adam Voigt
[EMAIL PROTECTED]

On Wed, 2002-07-24 at 19:48, Salve Tinkerworth wrote:
> Does anyone have any good tips for error handling? I've tried different
> methods to retrieve good error information from mssql_query but nothing
> seems to be working.
> 
> Here's the latest attempt:
> 
> $result=mssql_query($sql2);
> $result=mssql_query('SELECT @@ERROR As ErrorCode');
> $error=mssql_fetch_row($result);
> if($error['ErrorCode'] != 0) {
>  echo $error['ErrorCode'];
>  echo $sql2;
>  die('Inserting OPS failed');
> }
> 
> 
> 
> -- 
> PHP Database Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
> 



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

Reply via email to