hi Laurent, Sorry for going silent for several days.... the usual excuse, work deadline, families etc....
Anyway, really appreciate ur jumping in and try to give me a hand. I finally found out why: 1.) I have to indicate in Eclipse that the user library, that pointed to the jar downloaded from Maven repo should be a system library. 2.) I was having (use clojure.java.jdbc) instead of (use `clojure.java.jdbc) <== note the single quote in front of clojure. As soon as I put that in together with (1) above, it started recognizing the library. Also I found out from the doc its better to use (require) with :as. So now I have: (ns com.joseph.MyJdbc001 (:require [clojure.java.jdbc :as jdbc]) (:require [clojure.set :as set]) ) And everything works. Thanks, Joseph -- You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group, send email to clojure@googlegroups.com Note that posts from new members are moderated - please be patient with your first post. To unsubscribe from this group, send email to clojure+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/clojure?hl=en