Re: Password authentification failed after Quicklis update
Russ Tyndall <[email protected]> Fri, 08 Mar 2013 15:14:37 -0500
| Newsgroups | gmane.lisp.clsql.general |
|---|---|
| Message-ID | <[email protected]> |
Also, postgresql-socket backend implements version 2 of the socket api, while cl-postgres (and thus the postgresql-socket3) implement version 3. Another difference between these two clsql backends is the ability to pass parameters to the query, which socket3 supports but socket does not. (See clsql:command-object etc.) Cheers and HTH, Russ Tyndall Software Developer Acceleration.net On 3/8/2013 1:58 PM, Ryan Davis wrote: > postgresql-socket3 implements clsql's database backend interface, but > defers the PostgreSQL connections to the cl-postgres project. > > postgresql-socket3 adds a few other capabilities on top of clsql's > standard database backend interface, notably streaming results from the > db without putting them all in a list first. We needed that for > exporting large datasets to CSV over the web. With postgresql-socket3 > we could hook up the row-reader in CLSQL directly to the HTTP output stream.