Re: ANN: ClojureQL 1.0.0 now released

2011-01-07 Thread Rick Mouritzen
A prepared statement is something inside a database. The true object isn't part of JDBC or a JDBC driver. So you open a connection, then create your SQL using JDBC's PreparedStatement to tell the DB to use a prepared statement. Next time that same SQL is used with another JDBC PreparedStatement, t

Re: REQUEST for feedback on http://clojure.org

2010-11-02 Thread Rick Mouritzen
Los Angeles Clojure Users Group http://clj-la.org/ On Sat, Oct 30, 2010 at 7:38 PM, Alex Miller wrote: > Hi all, > > I'm doing a bit of doc cleanup on http://clojure.org and I'd welcome > your feedback on things that are broken or could be improved. I'm not > looking (or likely authorized :) to

Re: Help: Rephrasing an English statement into questions.

2010-05-05 Thread Rick Mouritzen
Search online for "natural language processing". It's a big area. http://en.wikipedia.org/wiki/Category:Natural_language_processing On Mon, May 3, 2010 at 7:19 PM, JT wrote: > I need to write a program that will rephrase an English statement into > a question as many different ways as possible.

Re: copying structures

2010-03-28 Thread Rick Mouritzen
The Clojure data structures are immutable, so there's no need to copy. Just "modify" the existing structure and you have a new immutable instance. If you are coming from Java, it helps to think of these immutable structures like Java's String. On Sun, Mar 28, 2010 at 9:29 AM, strattonbrazil wrot