Package org.rege.isqlj

Examples of org.rege.isqlj.JavaSql


        if( session != null)
    {
      String str = session.getSessionInternalFrame().getSQLPanelAPI().getSQLScriptToBeExecuted();
      try
      {
        JavaSql sqlj = new JavaSql();
        sqlj.getInterpreter().set( "session", new SqscConnection( session, plugin));
        sqlj.getInterpreter().set( "jdbc",
            new ISqlJConnection( session.getSQLConnection().getConnection()));
        sqlj.exec( new StringReader( str));
      } catch( Exception ex)
      {
        throw new BaseException(ex);
      }
    }
View Full Code Here

TOP

Related Classes of org.rege.isqlj.JavaSql

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.