At 11:58 30/3/2001 -0500, you wrote:
>Hope it helps.
>Let me know if it works for you.
well... it was in fact a great idea... but it didn't work... for some
reason... ob_*() functions do not grab warnings and error messages
generated by PHP... so warnings AND the error messages were lost...
ma
Have you tried writing a wrapper function for mssql_query(), something like:
my_mssql_query( $query, $link_id){
global $php_errormsg;
ob_start();
$result = mssql_query( $query, $link_id );
if( !$result ){
$php_errormsg = ob_get_contents();
isn't there a better way to handle MS SQL error messages? I can't even
fetch them...
look at these warnings... they only show in development side, I don't want
warnings on the production site, so I turn them off with error_reporting()...
Warning: MS SQL message: There is already an object named
3 matches
Mail list logo