Date: 12/28/00
- Next message: Mattias Johansson: "RE: [PHP-DB] (U) RE: [PHP-DB] Cookie problem"
- Previous message: Glen Scott: "Re: [PHP-DB] Browser PB"
- In reply to: Todd Cary: "[PHP-DB] Handling exceptions"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
If you already know that $sid and $series must have a value why don't you
check its values before submit the query ? This way you'll be sure your
query is correct and all errors you can get are not from your query.
Have a look also on php-manual at features.error-handling.html .
HTH
Jayme.
http://www.conex.com.br/jjeffman
-----Mensagem Original-----
De: Todd Cary <todd <email protected>>
Para: <php-db <email protected>>
Enviada em: quinta-feira, 28 de dezembro de 2000 01:59
Assunto: [PHP-DB] Handling exceptions
> I have a function that updates a table. Though an exception should not
> occur, I am not sure how to handle an exception if one should occur. If
> the query is not successful, $sthdl will be "0", but if the query itself
> is incorrect (e.g. $sid is blank), and exception would be generated.
>
> Todd
>
> function db_add_series_session($dbh, $sid, $series) {
> $stmnt = "UPDATE SESSIONS SET SES_COURSE='" . $series . "' WHERE
> SES_SESSION_ID=" . $sid;
> $sthdl = ibase_query($stmnt,$dbh);
> ibase_commit();
> return $sthdl;
> };
>
>
>
> --
> Todd Cary
> Ariste Software
> todd <email protected>
>
>
>
> --
> PHP Database Mailing List (http://www.php.net/)
> To unsubscribe, e-mail: php-db-unsubscribe <email protected>
> For additional commands, e-mail: php-db-help <email protected>
> To contact the list administrators, e-mail: php-list-admin <email protected>
>
-- PHP Database Mailing List (http://www.php.net/) To unsubscribe, e-mail: php-db-unsubscribe <email protected> For additional commands, e-mail: php-db-help <email protected> To contact the list administrators, e-mail: php-list-admin <email protected>
- Next message: Mattias Johansson: "RE: [PHP-DB] (U) RE: [PHP-DB] Cookie problem"
- Previous message: Glen Scott: "Re: [PHP-DB] Browser PB"
- In reply to: Todd Cary: "[PHP-DB] Handling exceptions"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]

