Hibernate 3中如何获得库表所有字段的名称
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Hibernate 3中如何获得库表所有字段的名称相关的知识,希望对你有一定的参考价值。
15问:Hibernate 3中如何获得库表所有字段的名称
答:可以使用以下的程序获得。
Configuration conf = new Configuration();
conf.configure();
Iterator iter = conf.getTableMappings();
while ( iter.hasNext() ) {
Table table = ( Table ) iter.next();
System.out.println(table.getName());
Iterator ics = table.getColumnIterator();
while (ics.hasNext()){
Column col = (Column) ics.next();
System.out.println(col.getName());
}
}
以上是关于Hibernate 3中如何获得库表所有字段的名称的主要内容,如果未能解决你的问题,请参考以下文章
django 插入库表时如何添加many-to-many字段数据