Radovan Antloga <[email protected]> wrote: > create table test (a integer not null, b float not null); > > update test > set b = 0.0 / 0; > > you will get error: test.b may not be null
Appears to be working as intended. Division by zero produces null, which cannot be stored in test.b . What exactly seems to be the problem? -- Igor Tandetnik _______________________________________________ sqlite-users mailing list [email protected] http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

