Re: [postmodern-devel] Regression in handling integer dates and timestamps

2012-02-13 Thread Lucas Hope
ern/commit/ce1fd7a23b2e523dcc7b3f96fd60b486c5f17117 > > Best, > Marijn > > ___ > postmodern-devel mailing list > postmodern-devel@common-lisp.net > http://lists.common-lisp.net/cgi-bin/mailman/listinfo/postmodern-devel > --

Re: [postmodern-devel] Regression in handling integer dates and timestamps

2012-02-09 Thread Lucas Hope
Additional: My notes say that it succeeded on ~/quicklisp/dists/quicklisp/software/postmodern-20110619-git and failed on ~/quicklisp/dists/quicklisp/software/postmodern-20110829-git . -Luke On Fri, Feb 10, 2012 at 2:36 PM, Lucas Hope wrote: > Hi there, > > The following code sampl

[postmodern-devel] Regression in handling integer dates and timestamps

2012-02-09 Thread Lucas Hope
amp (pomo:query "select * from timestamp limit 1" :single)) => 3471292800 (ignore-errors (pomo:execute "insert into timestamp ( value ) values ( $1 )" timestamp)) => NIL => # -- --- Dr Lucas Hope - lucas.r.hope@skype Machine Learning and Software Engineering Consultant Melbourne, Australia ___ postmodern-devel mailing list postmodern-devel@common-lisp.net http://lists.common-lisp.net/cgi-bin/mailman/listinfo/postmodern-devel

Re: [postmodern-devel] date

2011-02-19 Thread Lucas Hope
modern-devel mailing list > postmodern-devel@common-lisp.net > http://common-lisp.net/cgi-bin/mailman/listinfo/postmodern-devel > -- --- Dr Lucas Hope - lucas.r.hope@skype Machine Learning and Software Engineering Consultant Melbourne, Austra

Re: [postmodern-devel] plists

2011-01-25 Thread Lucas Hope
. > > > ___ > postmodern-devel mailing list > postmodern-devel@common-lisp.net > http://common-lisp.net/cgi-bin/mailman/listinfo/postmodern-devel > -- -

Re: [postmodern-devel] Developing with postmodern

2010-03-19 Thread Lucas Hope
and which > Postgres version are you using? > > Best, > Marijn > > ___ > postmodern-devel mailing list > postmodern-devel@common-lisp.net > http://common-lisp.net/cgi-bin/mailman/listinfo/postmodern-devel > -- -

[postmodern-devel] with-connection is strange...

2009-05-25 Thread Lucas Hope
Hi there, The macro with-connection doesn't seem to work as I would expect. It seems two macros were merged... I am curious as to why the following definition is used: (defmacro with-connection (spec &body body) "Like with-connection, but evaluate the specification list." `(let ((*database*

[postmodern-devel] Cursors?

2009-03-16 Thread Lucas Hope
that portion of my work back to postmodern. Cheers, -Luke -- --- Dr Lucas Hope - (646) 2332123 after 3pm US EST Machine Learning and Software Engineering Consultant Melbourne, Australia ___ postmodern-

[postmodern-devel] Bug when redefining a class.

2009-03-10 Thread Lucas Hope
Hi again, The following triggers an incorrect error for me. Not a major bug since the third case provides a workaround. (defclass FOO () ((bar :col-type real)) (:metaclass dao-class) (:keys baz)) (dao-table-definition 'foo) ;; correct error. ;; redefine: (defclass FOO () ((bar :col-type

Re: [postmodern-devel] Can't redefine slots as columns - why?

2009-03-10 Thread Lucas Hope
emember how direct slots and > effective slots are supposed to work. If everything works as intended > for you, I'll drop the test and allow slots from superclasses to be > defined as column slots. > > Best, > Marijn > > On Tue, Mar 10, 2009 at 8:00 PM, Lucas Hope wrote

Re: [postmodern-devel] Can't redefine slots as columns - why?

2009-03-10 Thread Lucas Hope
to solve this in some other way. > > Best, > Marijn > > > On Tue, Mar 10, 2009 at 10:10 AM, Lucas Hope wrote: >> Hi Marijn, >> >> I stubbed out the form and the dao-circle was successfully compiled (of >> course). >> >> However the example circle

Re: [postmodern-devel] Can't redefine slots as columns - why?

2009-03-10 Thread Lucas Hope
way you are trying > to use this metaclass, and assumed redefining a slot as a column was > always an accident. Could you try killing the WHEN-form on line 97 of > postmodern/table.lisp, doing what you're trying to do, and reporting > back whether it works as hoped? > > Best,

[postmodern-devel] Can't redefine slots as columns - why?

2009-03-09 Thread Lucas Hope
Hi there, I am just getting my feet wet with postmodern. It looks like I will be doing some heavy development with it for the next couple of weeks. Wish me luck! My (first?) issue is that I want to do something similar to the following example code. Here CIRCLE is an in-memory implementation of