asarch

Results 9 comments of asarch
trafficstars

I one way I found was to load the package actually before you load the project: ```lisp (load #P"src/mypackage.lisp") ``` and then: ```list (ql:quickload :myproject) ```

Can you please give me an example of a POST message handler with Caveman2?

Courtesy of Mr. Nilby@#lisp.FreeNode: ``` (defroute ("/" :method :POST) (&key _parsed) (let ((uploaded-file-buffer (second (car _parsed))) (file-name (format nil "static/~a" (third (car _parsed))))) (with-open-file (file-stream file-name :direction :output :if-exists :supersede...

Thank you! Thank you very much!

```lisp (ql:quickload :sxql) (select :* (from (:student)) (order-by :id (:desc :id)) (limit (- 20 (+ 10 1))) (offset 10)) ``` P.S. This questions was not for here, it was for...

I put them in the **opensmalltalk-vm/building/linux64x64/newspeak.cog.spur/build** dir before I started to **./mvm** to build the virtual machine.

Well, after the compilation process has finished, somehow, **mvm** asks for them. That's why I was asking about it. In the log you can see the error message.

One stupid question: with **PostgreSQL**, how would you get the id of the newly created record? ``` (with-connection (db :school) (execute (insert-into :students (set= :last_name "Uzumaki" :first_name "Naruto" :address "Ever...