Examples of pushObjectValue()


Examples of org.keplerproject.luajava.LuaState.pushObjectValue()

   
    LuaState L = LuaStateFactory.newLuaState();
    L.openLibs();
   
    //L.pushString("st");
    L.pushObjectValue(st);
    //L.setTable(LuaState.LUA_GLOBALSINDEX.intValue());
    L.setGlobal("st");
   
    int err = L.LdoFile("testJDBC.lua");
    if (err != 0)
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.