Example sql-s how to reproduce:

create table test (a integer not null, b float not null);
insert into test values (1, 0);
insert into test values (2, 0);
insert into test values (3, 0);

I actualy get values from other tables but in my
example they sum to zero so to simplify you can
try just this:

update test
set b = 0.0 / 0;

you will get error: test.b may not be null

I reproduced also with windows command-
line shell.

Best Regards !
Radovan Antloga
_______________________________________________
sqlite-users mailing list
sqlite-users@sqlite.org
http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

Reply via email to