Re: Class.forName?

2014-02-01 Thread Jean-Francois Denise
Hi Tom, some JDBC initialisation code that works: Java.type("org.apache.derby.jdbc.ClientDriver"); var connection = java.sql.DriverManager.getConnection("jdbc:derby://localhost:1527/sample;user=app;password=app", null); JF On Feb 1, 2014, at 4:07 PM, Tom McGinn wrote: > Thanks Jim - > > Tha

Re: More fun with scopes and ScriptObjectMirror

2013-12-11 Thread Jean-Francois Denise
Hi, in nodejs and avatar-is such declarations are leaked. Actually 100% of node core scripts use var. Declaring variables without var seems something that has to be chased and eradicated more than to be supported. A global "global" is used to add global definitions. I would say that all node mod