java中如何获取数据库的表结构?
java中如何获取数据库的表结构?
how to get table structre of a database in java?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
java中如何获取数据库的表结构?
how to get table structre of a database in java?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(3)
使用 DatabaseMetaData 获取表信息。
您可以使用
getTablexxx()
和getColumnxx()
方法获取表信息。Use DatabaseMetaData to get the table information.
You can use the
getTablexxx()
andgetColumnxx()
methods to get the table information.如果您只关心能够在不同的服务器上重新创建表,则可以使用
SHOW TABLES
获取表列表,然后使用SHOW CREATE TABLE foo
获取CREATE TABLE
命令。您还可以查看 mysqldump 程序,看看它是否更适合您的需求。约书亚
If you just care about being able to recreate the table on a different server, you can use
SHOW TABLES
to get a list of tables, thenSHOW CREATE TABLE foo
to get theCREATE TABLE
command. You might also look at the mysqldump program to see if it better suits your needs.Joshua
一种方法是使用 hibernate,进行逆向工程并根据现有数据库生成实体 bean。
One way is to use hibernate, reverse engineer and generate entity beans according to your existing database.