atitit。获取表格的字段注释metadata的原理以及AND 字段表格描述文档方案
atitit。获取表格的字段注释metadata的原理以及AND 字段表格描述文档方案
1. 通过sql ide navicate获取(推荐)通过meatadata数据库获取 1
2.1. ResultSet的字段列表 fields(23个)
2
3. 通过phpmyadmin>>表结构,复制表头,word里面行专列 6
1. 通过sql ide navicate获取(推荐)通过meatadata数据库获取
mysql 数据字段文档
获取表单描述:
SELECT TABLE_NAME, TABLE_COMMENT FROM information_schema.tables
获取表行的备注:
select column_name,COLUMN_COMMENT from information_schema.`COLUMNS` where TABLE_NAME='mall_shop_info'
shop_intro店铺介绍
shop_notice店铺公告
shop_creat_time店铺创建时间
goods_num店铺产品数量
open_flg店铺关闭,1为关闭
lock_flg店铺锁定,1为锁定
map_x地图经线坐标
作者:: 老哇的爪子 Attilax 艾龙, EMAIL:1466519819@qq.com
转载请注明来源: http://blog.csdn.net/attilax
2. 通过代码获取
private static void t1() throws SQLException {
//t4();
Connection con=IocX.getBean(Connection.class);
DatabaseMetaData dbmd = con.getMetaData();
String tableName="mall_order_info";
ResultSet rs = dbmd.getColumns(con.getCatalog(), "%", tableName, null);
while(rs.next()) {
String columnName = rs.getString("COLUMN_NAME");
String columnType = rs.getString("TYPE_NAME");
int datasize = rs.getInt("COLUMN_SIZE");
int digits = rs.getInt("DECIMAL_DIGITS");
int nullable = rs.getInt("NULLABLE");
String COLUMN_COMMENT = rs.getString("REMARKS");
个)
Line 5: column name: TABLE_CAT
Line 13: column name: TABLE_SCHEM
Line 19: column name: TABLE_NAME
Line 25: column name: COLUMN_NAME
Line 31: column name: DATA_TYPE
Line 37: column name: TYPE_NAME
Line 43: column name: COLUMN_SIZE
Line 49: column name: BUFFER_LENGTH
Line 55: column name: DECIMAL_DIGITS
Line 61: column name: NUM_PREC_RADIX
Line 67: column name: NULLABLE
Line 73: column name: REMARKS
Line 79: column name: COLUMN_DEF
Line 85: column name: SQL_DATA_TYPE
Line 91: column name: SQL_DATETIME_SUB
Line 97: column name: CHAR_OCTET_LENGTH
Line 103: column name: ORDINAL_POSITION
Line 109: column name: IS_NULLABLE
Line 115: column name: SCOPE_CATALOG
Line 121: column name: SCOPE_SCHEMA
Line 127: column name: SCOPE_TABLE
Line 133: column name: SOURCE_DATA_TYPE
Line 139: column name: IS_AUTOINCREMENT
[com.mysql.jdbc.Field@171be16
catalog: null
table name:
original table name: null
column name: TABLE_CAT
original column name: null
MySQL data type: -1( Unknown MySQL Type # -1), com.mysql.jdbc.Field@76c95b
catalog: null
table name:
original table name: null
column name: TABLE_SCHEM
original column name: null
MySQL data type: -1( Unknown MySQL Type # -1), com.mysql.jdbc.Field@9d966d
catalog: null
table name:
original table name: null
column name: TABLE_NAME
original column name: null
MySQL data type: -1( Unknown MySQL Type # -1), com.mysql.jdbc.Field@1feea1e
catalog: null
table name:
original table name: null
column name: COLUMN_NAME
original column name: null
MySQL data type: -1( Unknown MySQL Type # -1), com.mysql.jdbc.Field@bc6a08
catalog: null
table name:
original table name: null
column name: DATA_TYPE
original column name: null
MySQL data type: -1( Unknown MySQL Type # -1), com.mysql.jdbc.Field@1d54e44
catalog: null
table name:
original table name: null
column name: TYPE_NAME
original column name: null
MySQL data type: -1( Unknown MySQL Type # -1), com.mysql.jdbc.Field@1057212
catalog: null
table name:
original table name: null
column name: COLUMN_SIZE
original column name: null
MySQL data type: -1( Unknown MySQL Type # -1), com.mysql.jdbc.Field@843ce4
catalog: null
table name:
original table name: null
column name: BUFFER_LENGTH
original column name: null
MySQL data type: -1( Unknown MySQL Type # -1), com.mysql.jdbc.Field@1b9bccc
catalog: null
table name:
original table name: null
column name: DECIMAL_DIGITS
original column name: null
MySQL data type: -1( Unknown MySQL Type # -1), com.mysql.jdbc.Field@11a241f
catalog: null
table name:
original table name: null
column name: NUM_PREC_RADIX
original column name: null
MySQL data type: -1( Unknown MySQL Type # -1), com.mysql.jdbc.Field@139b06a
catalog: null
table name:
original table name: null
column name: NULLABLE
original column name: null
MySQL data type: -1( Unknown MySQL Type # -1), com.mysql.jdbc.Field@6d05ee
catalog: null
table name:
original table name: null
column name: REMARKS
original column name: null
MySQL data type: -1( Unknown MySQL Type # -1), com.mysql.jdbc.Field@1a07061
catalog: null
table name:
original table name: null
column name: COLUMN_DEF
original column name: null
MySQL data type: -1( Unknown MySQL Type # -1), com.mysql.jdbc.Field@32007f
catalog: null
table name:
original table name: null
column name: SQL_DATA_TYPE
original column name: null
MySQL data type: -1( Unknown MySQL Type # -1), com.mysql.jdbc.Field@bec229
catalog: null
table name:
original table name: null
column name: SQL_DATETIME_SUB
original column name: null
MySQL data type: -1( Unknown MySQL Type # -1), com.mysql.jdbc.Field@1bd2497
catalog: null
table name:
original table name: null
column name: CHAR_OCTET_LENGTH
original column name: null
MySQL data type: -1( Unknown MySQL Type # -1), com.mysql.jdbc.Field@ad6ab6
catalog: null
table name:
original table name: null
column name: ORDINAL_POSITION
original column name: null
MySQL data type: -1( Unknown MySQL Type # -1), com.mysql.jdbc.Field@138ecb8
catalog: null
table name:
original table name: null
column name: IS_NULLABLE
original column name: null
MySQL data type: -1( Unknown MySQL Type # -1), com.mysql.jdbc.Field@3d2ff1
catalog: null
table name:
original table name: null
column name: SCOPE_CATALOG
original column name: null
MySQL data type: -1( Unknown MySQL Type # -1), com.mysql.jdbc.Field@11684ac
catalog: null
table name:
original table name: null
column name: SCOPE_SCHEMA
original column name: null
MySQL data type: -1( Unknown MySQL Type # -1), com.mysql.jdbc.Field@1604c40
catalog: null
table name:
original table name: null
column name: SCOPE_TABLE
original column name: null
MySQL data type: -1( Unknown MySQL Type # -1), com.mysql.jdbc.Field@12e1a27
catalog: null
table name:
original table name: null
column name: SOURCE_DATA_TYPE
original column name: null
MySQL data type: -1( Unknown MySQL Type # -1), com.mysql.jdbc.Field@1b70047
catalog: null
table name:
original table name: null
column name: IS_AUTOINCREMENT
original column name: null
MySQL data type: -1( Unknown MySQL Type # -1)]
3. 通过phpmyadmin>>表结构,复制表头,word里面行专列
3.1. word里面行专列
表格工具》》》转换为换行符号<p>
shop_id 店铺id
user_id 用户id
shop_name 店铺名称
shop_country 店铺所在国家
shop_province 店铺所在省份
shop_city 店铺所在城市
shop_district 店铺所在区
shop_address 店铺所在详细地址
shop_images 店铺介绍中的图片
shop_logo 店铺logo
shop_template_img 店铺模板大图
shop_template 店铺模板
shop_management 店铺主营
shop_intro 店铺介绍
shop_notice 店铺公告
shop_creat_time 店铺创建时间
goods_num 店铺产品数量
open_flg 店铺关闭,1为关闭
lock_flg 店铺锁定,1为锁定
map_x 地图经线坐标
map_y 地图纬线坐标
map_zoom 地图比例
count_imgsize 图片总大小
shop_categories 店铺最后分类
shop_domain 商店二级域名
atitit。获取表格的字段注释metadata的原理以及AND 字段表格描述文档方案的更多相关文章
- sqlserver添加表、字段注释
引用 :http://begoodluck.blog.163.com/blog/static/20450728020141191412788/ 1.sqlserver用语句给表注释EXECUTE sp ...
- sqlserver添加查询 表、字段注释(转)
环境:xp sp3,sql server2008 .sqlserver用语句给表注释 EXECUTE sp_addextendedproperty N'MS_Description', N'表注释', ...
- Atitit.获取某个服务 网络邻居列表 解决方案
Atitit.获取某个服务 网络邻居列表 解决方案 原理,带入某个ip扫描从0---255 很快,多线程几秒就可以出来. 使用CountDownLatch来join线程.. 返回 [{ " ...
- 在oracle中操作表及字段注释,查询一个表的所有字段名以及属性和约束
1.查询表注释 SELECT * FROM USER_TAB_COMMENTS; 三列:TABLE_NAME,TABLE_TYPE,COMMENTS 2.查询字段注释 SELECT * FROM US ...
- Activiti6系列(1)- 核心数据库表及字段注释说明
前言 本文是根据<疯狂工作流讲义-Activiti6.0>一书中提取过来的,有兴趣的可以去当当网买这本书,讲的很不错,最后还有实战案例. 虽然是提取过来的,但完全靠手打梳理,觉得有用的小伙 ...
- SpringBoot接口 - 如何生成接口文档之非侵入方式(通过注释生成)Smart-Doc?
通过Swagger系列可以快速生成API文档,但是这种API文档生成是需要在接口上添加注解等,这表明这是一种侵入式方式: 那么有没有非侵入式方式呢, 比如通过注释生成文档? 本文主要介绍非侵入式的方式 ...
- java文档注释--javadoc的用法
1.前言 Java中有三种注释方式.前两种分别是 // 和 /* */,主要用于代码的注释,以此来方便代码的可读性.第三种被称作说明注释或文档注释,它以 /** 开始,以 */结束,文档注释允许你在程 ...
- 转 创建 JavaScript XML 文档注释
http://www.cnblogs.com/chenxizhang/archive/2009/07/12/1522058.html 如何:创建 JavaScript XML 文档注释 Visual ...
- java文档注释主要使用方法
一.java包含哪些注释 1.//用于单行注释. 2./*...*/用于多行注释,从/*开始,到*/结束,不能嵌套. 3./**...*/则是为支持jdk工具javadoc.exe而特有的注释语句.这 ...
随机推荐
- OpenCV Shi-Tomasi角点检测子
Shi-Tomasi角点检测子 目标 在这个教程中我们将涉及: 使用函数 goodFeaturesToTrack 来调用Shi-Tomasi方法检测角点. 理论 代码 这个教程的代码如下所示.源代码还 ...
- 在线分享Oracle尖峰时刻--2014年中秋节尖峰在线福利!
********************************************************** 2014年中秋节尖峰在线福利!*************** ...
- TensorFlowIO操作(一)----线程和队列
线程和队列 在使用TensorFlow进行异步计算时,队列是一种强大的机制. 为了感受一下队列,让我们来看一个简单的例子.我们先创建一个“先入先出”的队列(FIFOQueue),并将其内部所有元素初始 ...
- [转载][概念]Storage Pool, Private RAID Group, Private LUN
Storage Pool的起源 ========================== Some time ago, EMC introduced the concept of Virtual Prov ...
- 13个 ASP.NET MVC 的扩展
ASP.NET MVC设计的主要原则之一是可扩展性.处理管线(processing pipeline)上的所有(或大多数)东西都是可替换的.因此,如果您不喜欢ASP.NET MVC所使用的约定(或缺乏 ...
- delegate和event的区别 (zz)
一. delegate C#代理实际上类似于C++中的函数指针,因为C#中不存在指针,所以用代理可以完成一些原来在C++中用函数指针完成的操作,例如传递一个类A的方法m给另一个类B的对象,使得类B的对 ...
- vi命令整理
vi命令整理 u 撤销上一次操作 ctrl+r 恢复上一次操作 : 跳转至第1行 :$ 跳转至最后一行 ctrl+f 向文章末尾翻页 ctrl+b 向文章开始翻页 yy 复制一行 p 粘贴刚刚复制第一 ...
- 换掉Tomcat默认图标
将<Tomcat_home>下的/webapps/ROOT的favicon.ico替换成你自己的图标,名还得是这个名. 然后清除浏览器缓冲,webapp默认的小猫图标就被换掉了. 效果如下 ...
- Google帮助IE浏览器实现对SVG支持
可缩放矢量图形(SVG)的意识就是一个用于描述二维矢量图形的一种开放图形格式. SVG现在已经能够广泛得应用到许多的项目当中,包括KDE和维基百科等.但是 Internet Explorer浏览器的内 ...
- 转adb Shell root 权限
永久root带文件 因为开发需要,我经常会用到adb这个工具(Android Debug Bridge),我们都知道adb shell默认是没有root权限的,修改系统文件就很不方便了,adb pus ...