[postmodern-devel] plists

2011-01-26 Thread Haris
git clone http://marijnhaverbeke.nl/git/postmodern :plists works ok now. Thanks ___ postmodern-devel mailing list postmodern-devel@common-lisp.net http://common-lisp.net/cgi-bin/mailman/listinfo/postmodern-devel

Re: [postmodern-devel] plists

2011-01-26 Thread Marijn Haverbeke
This should do the trick: git clone http://marijnhaverbeke.nl/git/postmodern ___ postmodern-devel mailing list postmodern-devel@common-lisp.net http://common-lisp.net/cgi-bin/mailman/listinfo/postmodern-devel

[postmodern-devel] plists

2011-01-26 Thread Haris
I tried git clone https://github.com/marijnh/Postmodern/commit/1627b8a8f8d19181112ba9d6b9eb544153318a32 but it doesn't work. What exactly should I write to get this from git ? ___ postmodern-devel mailing list postmodern-devel@common-lisp.net http://

Re: [postmodern-devel] plists

2011-01-26 Thread Marijn Haverbeke
Coming back to this problem... > Error: Undefined operator NIL in form (NIL (CL-POSTGRES:EXEC-QUERY > *DATABASE* "select * from table1;" (QUOTE > POSTMODERN::SYMBOL-PLIST-ROW-READER))) Last night I suddenly realized that this is a bug that was fixed a long time ago [1]. Get the current code from

Re: [postmodern-devel] plists

2011-01-25 Thread Slobodan Milnović
On Tue, Jan 25, 2011 at 22:34, Marijn Haverbeke wrote: >> I'm from Zagreb too. > > Cool. Do you know Alan Pavicic, by any chance? You should start a Lisp > user group—there's bound to be at least three Lisp programmers there > ;) There already is one user group, I have been on one meeting about a

Re: [postmodern-devel] plists

2011-01-25 Thread Marijn Haverbeke
Hi Haris, > I tried  (query "select * from table1;" :plists) but I get: > > Error: Undefined operator NIL in form (NIL (CL-POSTGRES:EXEC-QUERY > *DATABASE* "select * from table1;" (QUOTE > POSTMODERN::SYMBOL-PLIST-ROW-READER))) Interesting. On Allegro this seems to work fine. I don't have Lispwor

Re: [postmodern-devel] plists

2011-01-25 Thread Lucas Hope
Hi, I too have noticed that :plist and :plists doesn't work in in the current release version. I don't really have a need for it, so I just didn't use it. Thanks for the great product. Your library has been my #1 used over the last year. It is just so good that we very rarely need to say anything

[postmodern-devel] plists

2011-01-25 Thread Haris
Hi. I tried (query "select * from table1;" :plists) but I get: Error: Undefined operator NIL in form (NIL (CL-POSTGRES:EXEC-QUERY *DATABASE* "select * from table1;" (QUOTE POSTMODERN::SYMBOL-PLIST-ROW-READER))) What does that mean ? I'm using Lispworks/Windows. I also tried (query "select * f

Re: [postmodern-devel] plists

2011-01-25 Thread Marijn Haverbeke
Hey, > (query "select * from table1;" :plists t) It is not a keyword argument. Rather, there is a regular optional argument that gets a keyword value that determines the output format. (query "select * from table1;" :plists) should work. > P.S. What's with the Croatia example ? I'm from Croatia.

[postmodern-devel] plists

2011-01-25 Thread Haris
Hi. I didn't quite understand the :plists argument. I want for select to return me lists of plists. I tried this: (query "select * from table1;" :plists t) but it doesn't work ? P.S. What's with the Croatia example ? I'm from Croatia. ___ postmodern-de