Bug on executeCommandLineSQL java.lang.NullPointerException
Brought to you by:
stevesgee
invoking java -cp ".\shellRaptor.jar;.\mydriver.jar" com.gravitysoft.sqltuil.ShellRaptor --stdout=conf/stdout.xml i get that exception becouse in
SQLEditor.executeCommandLineSQL(..) stmt is null.
posible solution to modify
rset = stmt.executeQuery(clSQL);
with
rset = conn.createStatement().executeQuery(clSQL);