mybatis中如何获取列元数据
我需要在 java 1.5 中使用 mybatis/ibatis 获取表中的列列表。
I need to get the list of columns in a table using mybatis/ibatis in java 1.5.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这不是典型的需求(99.99% 使用 iBatis 或任何 ORM 的应用程序都知道数据库模式)。 iBatis 是一个 SQL 映射器,您必须自己编写 SQL 查询。并且没有标准 SQL 查询 (AFAIK) 可以提供表中的列数。
我只能建议两种方法:
从目录表中进行选择的 SQL 查询。这是了解数据库元数据的正常方式。但这取决于您特定的数据库引擎。而且它与 iBatis 无关。
快速而肮脏:进行临时查询
SELECT * FROM MYTABLE LIMIT 1
(将 LIMIT 替换为您的数据库模拟),通过 HashMap 将其映射到 iBatis 中,然后在您的 DAO 中计算键的数量。That's not a typical requirement (99.99% of applications using iBatis or whatever ORM knows the DB schema). iBatis is a SQL mapper, you must write the SQL query yourself. And there is no standard SQL query (AFAIK) that gives you the number of columns in a table.
I can only suggest two approaches:
Make a SQL query selecting from the catalog tables. That's the normal way of knowing about your DB metadata. But that depends on your particular database engine. And it's not related to iBatis.
QUick and dirty: make an ad-hoc query
SELECT * FROM MYTABLE LIMIT 1
(replace LIMIT for your DB analog), map that in iBatis through a HashMap, and in your DAO just count the number of keys.对于Mybatis:需要使用resultType而不是resultmap。
resultType 必须是返回集合数据类型,通过知道集合的大小就可以得到 no。列等等,如果您使用 HashMap,您也可以在键中获取列名称。
For Mybatis:You need to use resultType instead of resultmap.
resultType must be of returning collection data type, by knowing the size of collection you can get no. of columns and more over if you are going with HashMap you can get column names too in keys.