Re: mysql apache - page never finish loading
- From: Mel <mel.boyce@xxxxxxxxx>
- Date: Wed, 12 Jul 2006 00:57:05 +1000
On 2006-07-10 10:00:41 +1000, "flamer die.spam@xxxxxxxxxxx" <die.spam@xxxxxxxxxxx> said:
i would stick in an ' or die (mysql_error ()); ' at the end of the
statement, probably is coming across an error but for some reason keeps
trying.. you really should have that on all your sql queries.
Flamer.
I'm curious: why should you always have one on SQL function calls? I never use them and opt for things like:
$link = @mssql_connect(CONNECTION_STUFF_HERE);
if ($link === false) {
// handle error
}
if (@mssql_select_db(DBNAME,$link) === false) {
// handle error
}
$sql = "select * from myTable";
$res = @mssql_query($res);
if ($res === false) {
// handle error
}
Normally this'd be in a class and '// handle error' would throw an Exception. This method is used heavily in my production environment and has yet to fail me. I'm not poo-pooing the idea of the die() or exit() functions inline with the SQL functions, just wondering why they should be used.
.
- Follow-Ups:
- Re: mysql apache - page never finish loading
- From: Jerry Stuckle
- Re: mysql apache - page never finish loading
- References:
- mysql apache - page never finish loading
- From: theGreatGnu
- Re: mysql apache - page never finish loading
- From: Alvaro G. Vicario
- Re: mysql apache - page never finish loading
- From: theGreatGnu
- Re: mysql apache - page never finish loading
- From: flamer die.spam@xxxxxxxxxxx
- mysql apache - page never finish loading
- Prev by Date: Re: Assign mysql record values to gloabl variabel
- Next by Date: Re: Php retreiving data from mssql and special characters
- Previous by thread: Re: mysql apache - page never finish loading
- Next by thread: Re: mysql apache - page never finish loading
- Index(es):
Relevant Pages
|