Re: My troubles with test PostgreSQL 8.1
Kevin Rosenberg <kevin-HJRc7zDS/[email protected]> Fri, 11 Nov 2005 09:19:54 -0700
| Newsgroups | gmane.lisp.clsql.devel |
|---|---|
| Message-ID | <[email protected]> |
Yaroslav Kavenchuk wrote: > [9]> (clsql:insert-records :database db :into "test" :values '(1 1.5d1)) insert-records does not escape the double float to a sql string. Using: (clsql:insert-records :database db :into "test" :values '(1 "1.5e1")) will work correctly for you. I'm investigating having CLSQL automatically convert the double float to a legal sql string. -- Kevin Rosenberg kevin-HJRc7zDS/[email protected]