lua-users home
lua-l archive

[Date Prev][Date Next][Thread Prev][Thread Next] [Date Index] [Thread Index]



LuaSQL is just what I was looking for for my current project but I ran into a problem with the following:

#if defined(WIN32)
#include <windows.h>
#include <sqlext.h>
#elif defined(INFORMIX)
#include <infxcli.h>
#endif

I'm on unix (Mac OSX) and don't have informix. Is there any way for me to get this working?

Steve