jdbc-mysql基础 ResultSetMetaData getColumnCount 得到结果集的列数
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jdbc-mysql基础 ResultSetMetaData getColumnCount 得到结果集的列数相关的知识,希望对你有一定的参考价值。
礼悟:
好好学习多思考,尊师重道存感恩。叶见寻根三二一,江河湖海同一体。
虚怀若谷良心主,愿行无悔给最苦。读书锻炼强身心,诚劝且行且珍惜。
数据、数据,命根就在数据。云计算、AI等技术,都是以数据为基础。操作数据库一定要谨慎小心。给最苦 这里的代码,看看就好,要有自己的判断。遇到抉择,要不耻上下问,三思而后行。
javaSE:8
mysql:5.7.14
mysql-connector-java:5.1.44
MySQL-Front:5.4
os:windows7 x64
ide:MyEclipse 2017
特制的异常类
package com.jizuiku; /** * 这个类很重要,即完成了抛异常的动作、通过编译,又可以使数据逻辑层的接口保持简洁。 * * @author 博客园-给最苦 * @version V17.11.08 */ public class DaoException extends RuntimeException { /** * */ private static final long serialVersionUID = 1L; public DaoException() { // TODO Auto-generated constructor stub } public DaoException(String message) { super(message); // TODO Auto-generated constructor stub } public DaoException(Throwable cause) { super(cause); // TODO Auto-generated constructor stub } public DaoException(String message, Throwable cause) { super(message, cause); // TODO Auto-generated constructor stub } public DaoException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) { super(message, cause, enableSuppression, writableStackTrace); // TODO Auto-generated constructor stub } }
JDBCUtils类
package com.jizuiku; import java.sql.Connection; import java.sql.DriverManager; import java.sql.PreparedStatement; import java.sql.ResultSet; import java.sql.SQLException; /** * * * @author 给最苦 * @version V17.11.07 */ public final class JDBCUtils { /** * url格式 -> jdbc:子协议:子名称//主机名:端口号/数据库的名字?属性名=属性值&属性名=属性值 * configString变量中有多个参数,需要深入地去研究它们的具体含义 */ private static String configString = "?useUnicode=true&characterEncoding=utf8&useSSL=true"; private static String url = "jdbc:mysql://localhost:3306/jdbcforjava" + configString; // 本地的mysql数据库(无子名称) 端口号3306 数据库jdbcforjava private static String user = "root"; private static String password = ""; // 工具类,直接使用,不可生对象 private JDBCUtils() { } // 注册驱动,这里应用的是static代码块只执行一次的特点 static { try { Class.forName("com.mysql.jdbc.Driver"); } catch (ClassNotFoundException e) { // TODO Auto-generated catch block throw new ExceptionInInitializerError(e); } } /** * 获取与指定数据库的链接 * */ public static Connection getConnection() throws SQLException { return DriverManager.getConnection(url, user, password); } /** * 释放三种资源ResultSet PreparedStatement Connection * */ public static void free(ResultSet rs, PreparedStatement ps, Connection con) { try { if (rs != null) { rs.close(); } } catch (SQLException e) { // TODO Auto-generated catch block throw new DaoException(e.getMessage(), e); } finally { try { if (ps != null) { ps.close(); } } catch (SQLException e) { // TODO Auto-generated catch block throw new DaoException(e.getMessage(), e); } finally { try { if (con != null) { con.close(); } } catch (SQLException e) { // TODO Auto-generated catch block throw new DaoException(e.getMessage(), e); } } } } }
测试类
package com.jizuiku; import java.sql.Connection; import java.sql.PreparedStatement; import java.sql.ResultSet; import java.sql.ResultSetMetaData; import java.sql.SQLException; /** * * * @author 博客园-给最苦 * @version V17.11.09 */ public class Demo { public static void main(String[] args) { test(); } public static void test() { Connection con = null; PreparedStatement ps = null; ResultSet rs = null; try { // 注册驱动并建立连接 con = JDBCUtils.getConnection(); // 创建语句 String sql = "select id,name,quantity,time,price from book"; ps = con.prepareStatement(sql); // 执行语句 rs = ps.executeQuery(); /* * 这五列分别是id,name,quantity,time,price * 为什么 给最苦 感这么肯定 这五列呢? * 因为 sql语句中写了呀! * String sql = "select id,name,quantity,time,price from book"; * */ System.out.println("列数:" + rs.getMetaData().getColumnCount()); } catch (SQLException e) { throw new DaoException(e); } finally { // 释放资源 JDBCUtils.free(rs, ps, con); } } }
控制台输出的结果
注:操作数据库要谨慎小心,给最苦 这里的代码 看看就好。
学习资源:itcast和itheima视频库。如果您有公开的资源,可以分享给我的话,用您的资源学习也可以。
博文是观看视频后,融入思考写成的。博文好,是老师讲得好。博文坏,是 给最苦 没认真。
以上是关于jdbc-mysql基础 ResultSetMetaData getColumnCount 得到结果集的列数的主要内容,如果未能解决你的问题,请参考以下文章
文献学习DeepReceiver: A Deep Learning-Based Intelligent Receiver for Wireless Communications in the Ph
文献学习DeepReceiver: A Deep Learning-Based Intelligent Receiver for Wireless Communications in the Ph
渲染错误:没有找到没有参数的“ph”反向。尝试了 1 种模式:['(?P<answer>[^/]+)/ph\\-data/$']