继续浏览精彩内容
慕课网APP
程序员的梦工厂
打开
继续
感谢您的支持,我会继续努力的
赞赏金额会直接到老师账户
将二维码发送给自己后长按识别
微信支付
支付宝支付

#1.获取表结构语句,批量更新表结构信息

慕神7329700
关注TA
已关注
手记 10
粉丝 1
获赞 0

JDBC元数据操作,DatabaseMetaData接口详解链接描述
MySQL中表的字段信息查询–information_schema.COLUMNS-- 链接描述

    <!--查询表结构信息-->
    <select id="selectDimTabCols" parameterType="java.lang.String" resultType="com.table.column.pojo.DimTabCols">

        select
			<!--column_name结构名,colName属性名:字段名-->
            column_name as colName,
			<!--字段描述描述-->
            column_comment as colDesc,
			<!--字段类型-->
            data_type as typeName,
			<!--字段长度-->
            character_maximum_length as colLength,
			<!--精度-->
            numeric_precision as colPrecision,
			<!--可否为空-->
            is_nullable as colNullable,
			<!--索引类型-->
            column_key as keyFlag,
			<!--列顺序-->
            ordinal_position as colSeq

        from information_schema.columns

        where table_name = #{tabName}

    <!--批量更新表字段登记信息-->
   </select>
   <update id="updateTabCols">
      update dim_tab_cols set col_name =
      <foreach collection='tabColsList' item='item' index='index' separator=' ' open='case col_Id' close='end'>
          when #{item.colId} then #{item.colName}
      </foreach>
      where col_id in
      <foreach  collection='colIds' item='item' index='index' separator=',' open='(' close=')'>
         #{item}
      </foreach>
   </update>
//索引类型设置,未验证
for (int i = 0; i < tabColsList.size(); i++) {
      if("NO".equals(tabColsList.get(i).getColNullable())){
createdColList.get(i).setIsNullable("0");
      }else {
createdColList.get(i).setIsNullable("1");
	  if(null == tabColsList.get(i).getKeyFlag()){
createdColList.get(i).setColumnKey("0");
//createdColList.get(i).setColIndexFlag("n");
      }else if("PRI".equals(tabColsList.get(i).getKeyFlag())){
createdColList.get(i).setColumnKey("1");
	  }else {
createdColList.get(i).setColumnKey("0");
//createdColList.get(i).setColIndexFlag("y");
            }
}*/
}
打开App,阅读手记
0人推荐
发表评论
随时随地看视频慕课网APP