I have had trouble if there is an associated native library that needs to be loaded - in that case the java initializer will expect to be able to load the native library, but I don't know any way to dynamically extend the native library path. That may not be happening in your case, but I figured I'd add this factoid to the thread for later searching. If anyone knows how to actually change java.library.path at run time (and have the change matter), do let me know.<div>

-Alan<br><br><div class="gmail_quote">On Fri, May 18, 2012 at 9:08 AM, Mark Evenson <span dir="ltr"><<a href="mailto:evenson@panix.com" target="_blank">evenson@panix.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">

<div class="im"><br>
On May 18, 2012, at 14:54 , Alex Mizrahi wrote:<br>
<br>
><br>
>>> I've got it working once using something like java:jclass in SLIME REPL, but not it doesn't seem to work (in a slightly different environment).<br>
>>><br>
>>> Note that if jar is added to classpath via java commandline Class.forName will work fine. That's probably the easiest way to get it working.<br>
>>> Only loading jar dynamically via classloader is a problem.<br>
<br>
</div>[…]<br>
<br>
Apparently the postgres-jdbc DriverManager API has problems if the<br>
'postgresql.jar' is not on the system classpath, which doesn't seem to be true for the Oracle JDBC classes.<br>
<br>
The following uses the getConnection() method directly on the<br>
org.postgresql.Driver:<br>
<br>
(add-to-classpath "/opt/local/share/java/postgresql.jar")<br>
(jcall "connect" (jnew "org.postgresql.Driver") "jdbc:postgresql:test" (jnew "java.util.Properties"))<br>
<br>
I would recommend using this over messing with the ABCL classpath,<br>
as you'll have to include "extra" instructions to people to use<br>
your interface beyond the Lisp code you ship.<br>
<br>
P.S. The "-jar" and "-cp" options to Java are always mutually exclusive.<br>
<div class="HOEnZb"><div class="h5"><br>
<br>
_______________________________________________<br>
armedbear-devel mailing list<br>
<a href="mailto:armedbear-devel@common-lisp.net">armedbear-devel@common-lisp.net</a><br>
<a href="http://lists.common-lisp.net/cgi-bin/mailman/listinfo/armedbear-devel" target="_blank">http://lists.common-lisp.net/cgi-bin/mailman/listinfo/armedbear-devel</a><br>
</div></div></blockquote></div><br></div>