Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl: the Markov chain saw
 
PerlMonks  

Re: DBI ignoring devide by zero

by erix (Prior)
on Sep 28, 2012 at 18:39 UTC ( [id://996270]=note: print w/replies, xml ) Need Help??


in reply to DBI ignoring devide by zero

It's the DBMS (the database backend) that calculates (or effects) results of SQL statements, not DBI.

What DBMS are you using, and what does its errorlog say when you do something that it does not allow?

(The sql you use there is not valid (no semi-colons terminating the statements, invalid insert-syntax), so perhaps it's simply not executed; do you catch errors / follow the database log? )

( update: FWIW, postgres (9.3devel) gives the result you expect. Using commandline client psql:

echo " create table t (v int not null); insert into t values (1) ; insert into t values (10) ; insert into t values (12) ; insert into t values (0) ; select 10/v from t; " | psql -a # -a => echo all input from script -- yields: create table t (v int not null); CREATE TABLE insert into t values (1) ; INSERT 0 1 insert into t values (10) ; INSERT 0 1 insert into t values (12) ; INSERT 0 1 insert into t values (0) ; INSERT 0 1 select 10/v from t; ERROR: division by zero

)

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://996270]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others avoiding work at the Monastery: (8)
As of 2024-04-23 10:02 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found