Giter VIP home page Giter VIP logo

Comments (2)

satoren avatar satoren commented on July 19, 2024

It is maybe like this

int luafnc(lua_State* L)
{
int nRows = dataTable.NumOfRows();
int nField = dataTable.NumOfFields();

kaguya::State state(L);
kaguya::LuaTable array= state.newTable(nRows);
for (int i = 0; i < nRows; i++)
{
  kaguya::LuaTable row= state.newTable(0,nField);
  for (int j = 0; j < nField; j++)
  {
    dataTable.SetRow(i);
    row[dataTable.NameOfField(j)] = dataTable.ValueOfField(j);
  }
  array[i + 1] = row;
}
state.pushToStack(array);
return 1;
}

from kaguya.

owen200008 avatar owen200008 commented on July 19, 2024

in member function, can i write like this?
.addStaticFunction("QueryTotalData", [](CCQLite3DB* pDB, char* pSQL, CCQLite3DBTable* pTable)->kaguya::CCQLite3DBTable_Warp { {
kaguya::CCQLite3DBTable_Warp ret;
if (!pDB->GetDataToTable(pSQL, pTable)) {
return ret;
}
ret.m_pTmpTable = pTable;
return ret;
}})
);
namespace kaguya {
class CCQLite3DBTable_Warp {
public:
CCQLite3DBTable_Warp() {
m_pTmpTable = nullptr;
}
virtual ~CCQLite3DBTable_Warp() {

	}
public:
	CCQLite3DBTable* m_pTmpTable;
};
template<> struct lua_type_traits<CCQLite3DBTable_Warp> {
	typedef CCQLite3DBTable_Warp get_type;
	typedef const CCQLite3DBTable_Warp& push_type;
	static int push(lua_State* l, push_type sTmp) {
		CCQLite3DBTable* s = (CCQLite3DBTable*)sTmp.m_pTmpTable;
		if (s == nullptr)
			lua_pushnil(l);
		else {
			int nRows = s->NumOfRows();
			int nField = s->NumOfFields();
			lua_newtable(l);
			int array_index = lua_gettop(l);
			for (int i = 0; i < nRows; i++) {
				lua_newtable(l);
				int result_index = lua_gettop(l);
				for (int j = 0; j < nField; j++) {
					s->SetRow(i);
					lua_pushstring(l, s->NameOfField(j));
					lua_pushstring(l, s->ValueOfField(j));
					lua_settable(l, result_index);
				}
				lua_settop(l, result_index);
				lua_rawseti(l, array_index, i + 1);
			}
		}
		return 1;
	}
};

}

from kaguya.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.