Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在寻找一种方法来获取列的数据类型,给定它所在的表和列的名称。我看到其他答案是指 MSysIMEXColumns 表,但我的 Access 数据库没有该表。如果有帮助,我正在使用 Access 2003。
我想将结果作为哈希表放入我的 LUA 代码中,以便在插入或查找之前,我可以查找列的数据类型。基本上这样我就可以确定字段是否需要引号。
LuaSQL 用于访问 access 数据库。
任何帮助或方向表示赞赏
此处的 LuaSQLcursor object文档建议您应该能够使用
cursor object
cur:getcoltypes()
返回“列类型的列表(表)”。