[postmodern-devel] db-null problem
There seems to be a problem with exporting of 'db-null type: CL-USER> (pomo:sql (:create-table foo ((age :type (or db-null integer) :default :null)))) "CREATE TABLE foo (age OR NOT NULL DEFAULT NULL)" =========> error! CL-USER> (in-package :pomo) #<The POSTMODERN package> POMO> (pomo:sql (:create-table foo ((age :type (or db-null integer) :default :null)))) "CREATE TABLE foo (age INTEGER DEFAULT NULL)" POMO> Roman
Hey Roman, Try using pomo:db-null instead! Cheers, Marijn On 6/9/08, Roman Budzianowski <superdog@budzianowski.net> wrote:
There seems to be a problem with exporting of 'db-null type:
CL-USER> (pomo:sql (:create-table foo ((age :type (or db-null integer) :default :null)))) "CREATE TABLE foo (age OR NOT NULL DEFAULT NULL)" =========> error!
CL-USER> (in-package :pomo) #<The POSTMODERN package> POMO> (pomo:sql (:create-table foo ((age :type (or db-null integer) :default :null)))) "CREATE TABLE foo (age INTEGER DEFAULT NULL)" POMO>
Roman _______________________________________________ postmodern-devel mailing list postmodern-devel@common-lisp.net http://common-lisp.net/cgi-bin/mailman/listinfo/postmodern-devel
participants (2)
-
Marijn Haverbeke
-
Roman Budzianowski