cl:t, cl:nil, and :null have a special meaning in s-sql. In this case,
you can work around it by using :t or '#:t instead of 't in your
query.
___
postmodern-devel mailing list
postmodern-devel@common-lisp.net
http://common-lisp.net/cgi-bin/mailman/listi
Hi,
When trying to reproduce my encoding bug, I found a problem when a field
is named "t".
CREATE TABLE test (t TEXT NOT NULL);
(postmodern:execute (:insert-into 'test :set 't "utf8 é"))
Database error 42601: syntax error at or near "true"
Query: INSERT INTO test (true) VALUES (E'utf8 é')
[