博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Java 通过JDBC查询数据库表结构(字段名称,类型,长度等)
阅读量:4967 次
发布时间:2019-06-12

本文共 800 字,大约阅读时间需要 2 分钟。

通过ResultSetMetaData 对象获取 数据库表结构(字段名称,类型,长度等)
  • package java.sql;
  • /**
  • * An object that can be used to get information about the types
  • * and properties of the columns in a <code>ResultSet</code> object.
  • * The following code fragment creates the <code>ResultSet</code> object rs,
  • * creates the <code>ResultSetMetaData</code> object rsmd, and uses rsmd
  • * to find out how many columns rs has and whether the first column in rs
  • * can be used in a <code>WHERE</code> clause.
  • * <PRE>
  • *
  • * ResultSet rs = stmt.executeQuery("SELECT a, b, c FROM TABLE2");
  • * ResultSetMetaData rsmd = rs.getMetaData();
  • * int numberOfColumns = rsmd.getColumnCount();
  • * boolean b = rsmd.isSearchable(1);
  • *
  • * </PRE>
  • */
  • publicinterface ResultSetMetaData extends Wrapper

转载于:https://www.cnblogs.com/lujume/archive/2012/11/20/2779467.html

你可能感兴趣的文章
jQuery设置和获取HTML、文本和值
查看>>
国内著名黑客信息
查看>>
Celery 分布式任务队列快速入门
查看>>
head标签
查看>>
08.存储Cinder→5.场景学习→03.Attach Volume→2.实际操作
查看>>
R语言学习 - 线图绘制
查看>>
eos超时 锁表问题 网友办法
查看>>
Python学习笔记8(2)——序列的方法
查看>>
P3084 [USACO13OPEN]照片Photo
查看>>
matlab读取cvs文件的几种方法
查看>>
谈谈iOS Animation
查看>>
如何设置eclipse新建工程内文件的默认编码格式
查看>>
46. Permutations
查看>>
170. Two Sum III - Data structure design
查看>>
背包九讲之四(混合三种背包问题)
查看>>
hdu2544(自己实现优先队列)
查看>>
南阳242
查看>>
shell脚本去重的几种方法
查看>>
【完全开源】百度地图Web service API C#.NET版,带地图显示控件、导航控件、POI查找控件...
查看>>
Ubuntu 12.04 the system is running in low-graphics mode
查看>>