当前位置: 首页 > news >正文

有没有一些网站可以做问卷国外做装修设计网站

有没有一些网站可以做问卷,国外做装修设计网站,春节网站设计,中信银行网站怎么做的怎么烂Java进阶十—JDBC 一.说明 用Java语言操作Mysql#xff0c;首先需要学习Mysql MySQL入门教程-CSDN博客 二.JDBC的由来以及定义 JDBC是什么#xff1f; Java数据库连接(Java Database Connectivity)简称JDBCJDBC是Java操作各数据库的一种规范#xff0c;是Java语言中用来…Java进阶十—JDBC 一.说明  用Java语言操作Mysql首先需要学习Mysql  MySQL入门教程-CSDN博客 二.JDBC的由来以及定义  JDBC是什么 Java数据库连接(Java Database Connectivity)简称JDBCJDBC是Java操作各数据库的一种规范是Java语言中用来规范客户端程序如何来访问数据库的应用程序接口提供了诸如查询和更新数据库中数据的方法。JDBC是面向关系型数据库的 打个比方 假设Java公司是布料厂那么各SQL数据库公司就是服装设计厂Java公司规定JDBC接口允许去操作各数据库相当于提供原材料各SQL公司去实现接口相当于拿原材料设计出自己的服装 三.JDBC体验statement.executeQuery() 查询  1.首先下载架包Maven Repository: mysql » mysql-connector-java (mvnrepository.com)  下载完成后将架包拖入idea中的lib文件夹下(没有的话自己创建)然后点击 点击OK 2.连接 package com.jdbc;import java.sql.*;public class JDBCDemo {public static final String URL jdbc:mysql://localhost:3306/student;public static final String USER root;public static final String PASSWORD 123456;// 需要抛出异常ClassNotFoundException, SQLExceptionpublic static void main(String[] args) throws ClassNotFoundException, SQLException {// 1.加载驱动程序 —— 打电话给布料公司你给我送来我是mysql公司Class.forName(com.mysql.jdbc.Driver);// 2.获取数据库连接 —— 告诉送货员送货路线Connection connection DriverManager.getConnection(URL,USER,PASSWORD);// 3.获取数据库操作对象 —— 货到了卸货到仓库Statement statement connection.createStatement();// 4.从仓库选择要用的货// 我要查询student表ResultSet resultSet statement.executeQuery(SELECT * FROM student);// 判断是否有数据while (resultSet.next()) {int id resultSet.getInt(1);String name resultSet.getString(2);int age resultSet.getInt(3);double score resultSet.getDouble(4);int classId resultSet.getInt(5);System.out.println([id,name,age,score,classId]);}// 5.关闭仓库与数据库statement.close();connection.close();} }四.整理和释放  整理上面的代码 package com.jdbc;import java.sql.*;public class JDBCDemo {// 配置public static final String URL jdbc:mysql://localhost:3306/student;public static final String USER root;public static final String PASSWORD 123456;public static final String DRIVER com.mysql.jdbc.Driver;public static Connection connection;public static Statement statement;public static ResultSet resultSet;// 需要抛出异常ClassNotFoundException, SQLExceptionpublic static void main(String[] args) {try {// 1.加载驱动程序 —— 打电话给布料公司你给我送来我是mysql公司Class.forName(DRIVER);// 2.获取数据库连接 —— 告诉送货员送货路线connection DriverManager.getConnection(URL,USER,PASSWORD);// 3.获取数据库操作对象 —— 货到了卸货到仓库statement connection.createStatement();// 4.从仓库选择要用的货// 我要查询student表resultSet statement.executeQuery(SELECT * FROM student);// 判断是否有数据while (resultSet.next()) {int id resultSet.getInt(1);String name resultSet.getString(2);int age resultSet.getInt(3);double score resultSet.getDouble(4);int classId resultSet.getInt(5);System.out.println([id,name,age,score,classId]);}} catch (ClassNotFoundException e) {throw new RuntimeException(e);} catch (SQLException e) {e.printStackTrace();} finally {try {// 5.关闭仓库与数据库statement.close();connection.close();} catch (SQLException e) {e.printStackTrace();}}} }五.封装JDBCUtils 每个人的配置都不一样那我们就读取位置文件。 1.创建db.properties配置文件写入配置 2.创建JDBCUtils类读取配置 package com.google.util;import java.io.InputStream; import java.sql.*; import java.util.Properties;public class JDBCUtils {public static String url;public static String user;public static String password;public static String driver;// 使用静态代码块做预处理static {// 使用try/catch包裹try {// 读取配置文件InputStream inputStream ClassLoader.getSystemResourceAsStream(db.properties);// 加载对象Properties properties new Properties();;properties.load(inputStream);// 读取配置url properties.getProperty(url);user properties.getProperty(user);password properties.getProperty(password);driver properties.getProperty(driver);System.out.println(url\nuser\npassword\ndriver);} catch (Exception e) {e.printStackTrace();}}// 测试是否能加载成功public static void init() {System.out.println(加载成功);}// 创建单例获取配置项public static Connection getConnection() throws SQLException{return DriverManager.getConnection(url,user,password);}// 释放关闭结果关闭仓库关闭数据库连接public static void close(Connection connection, Statement statement, ResultSet resultSet) throws SQLException{if (resultSet ! null){resultSet.close();}if (statement ! null){statement.close();}if (connection ! null){connection.close();}}// 如果没有操作那么关闭仓库关闭数据库连接方法的重载public static void close(Connection connection,Statement statement) throws SQLException{if (statement ! null){statement.close();}if (connection ! null){connection.close();}}}3.测试是否能读取  package com.google.util;public class Test {public static void main(String[] args) {JDBCUtils.init();} }注意ClassLoader的getResourceAsStream方法使用及在java和web项目中的路径问题_classloader.getresourceasstream-CSDN博客  六.增删改 executeUpdate()  使用创建JDBCUtils类更新数据 package com.google.util;import org.junit.Test;import java.sql.Connection; import java.sql.SQLException; import java.sql.Statement;public class UpdateTest {public Connection connection;public Statement statement;Testpublic void updateTest() {try {// 1.获取数据库连接和操作对象connection JDBCUtils.getConnection();statement connection.createStatement();// 2.更新一条数据String sql update student set score33 where id4;int res statement.executeUpdate(sql);if (res 0) {System.out.println(更新成功);}} catch (SQLException e) {e.printStackTrace();} finally {try {JDBCUtils.close(connection,statement);} catch (SQLException e) {throw new RuntimeException(e);}}} }删除数据 public void deleteTest() {try {// 1.获取数据库连接和操作对象connection JDBCUtils.getConnection();statement connection.createStatement();// 2.删除一条数据String sql delete from student where id6;int res statement.executeUpdate(sql);if (res 0) {System.out.println(删除成功);}} catch (SQLException e) {e.printStackTrace();} finally {try {JDBCUtils.close(connection,statement);} catch (SQLException e) {throw new RuntimeException(e);}}} 插入数据 public void insertTest() {try {// 1.获取数据库连接和操作对象connection JDBCUtils.getConnection();statement connection.createStatement();// 2.插入一条数据String sql insert into student values(6,LiLi,15,44.3,2);int res statement.executeUpdate(sql);if (res 0) {System.out.println(插入成功);}} catch (SQLException e) {e.printStackTrace();} finally {try {JDBCUtils.close(connection,statement);} catch (SQLException e) {throw new RuntimeException(e);}}} 七.字符编码问题  如果插入中文时乱码怎么办 字符编码问题需要更改数据库、IDE、终端的编码格式为UTF-8在配置项中添加字符编码 八. PreparedStatement和问号占位符  如果想从键盘中输入数据 而不是像下面这样 String sql insert into student values(7,mimi,33,52.3,1); 那就把Statement换成PreparedStatement  1.第一步修改封装JDBCUtils把Statement换成PreparedStatement  package com.google.util;import java.io.InputStream; import java.sql.*; import java.util.Properties;public class JDBCUtils {public static String url;public static String user;public static String password;public static String driver;// 使用静态代码块做预处理static {// 使用try/catch包裹try {// 读取配置文件InputStream inputStream ClassLoader.getSystemResourceAsStream(db.properties);// 加载对象Properties properties new Properties();;properties.load(inputStream);// 读取配置url properties.getProperty(url);user properties.getProperty(user);password properties.getProperty(password);driver properties.getProperty(driver);} catch (Exception e) {e.printStackTrace();}}// 测试是否能加载成功public static void init() {System.out.println(加载成功);}// 创建单例获取配置项public static Connection getConnection() throws SQLException{return DriverManager.getConnection(url,user,password);}// 释放关闭结果关闭仓库关闭数据库连接public static void close(Connection connection, PreparedStatement preparedStatement, ResultSet resultSet) throws SQLException{if (resultSet ! null){resultSet.close();}if (preparedStatement ! null){preparedStatement.close();}if (connection ! null){connection.close();}}// 如果没有操作那么关闭仓库关闭数据库连接方法的重载public static void close(Connection connection,PreparedStatement preparedStatement) throws SQLException{if (preparedStatement ! null){preparedStatement.close();}if (connection ! null){connection.close();}}}第二步 使用下面代码方式 package com.google.util;import java.sql.Connection; import java.sql.PreparedStatement; import java.sql.SQLException; import java.util.Scanner;public class Test {// 注意此处是静态的public static Connection connection;public static PreparedStatement preparedStatement;// 接收器public static Scanner scanner new Scanner(System.in);public static void main(String[] args) {try {// 1.获取数据库connection JDBCUtils.getConnection();// 2.插入一条数据String sql insert into student values(?,?);System.out.println(请输入id年龄用回车隔开);// 接收数据int id scanner.nextInt();int age scanner.nextByte();// 3.preparedStatement传入带占位符的sql语句set方法设置每一个位置的值并执行更新操作preparedStatement connection.prepareStatement(sql);// 将接收器的数据放入sql语句的中preparedStatement.setInt(1,id);preparedStatement.setInt(2,age);int res preparedStatement.executeUpdate();if (res 0) {System.out.println(插入成功);}} catch (SQLException e) {e.printStackTrace();} finally {try {JDBCUtils.close(connection,preparedStatement);} catch (SQLException e) {scanner.close();throw new RuntimeException(e);}}}}同理删除与更改一样 读取只需要更改一小部分 // 2.插入一条数据String sql select * from student where id?;System.out.println(请输入id);// 接收数据int id scanner.nextInt();// 3.preparedStatement传入带占位符的sql语句set方法设置每一个位置的值并执行更新操作preparedStatement connection.prepareStatement(sql);// 将接收器的数据放入sql语句的中preparedStatement.setInt(1,id);ResultSet res preparedStatement.executeQuery();while (res.next()) {System.out.println(res.getInt(1)|res.getInt(2));}
http://www.zqtcl.cn/news/981220/

相关文章:

  • 网站建设完不管了自己怎么接手wordpress个人主页
  • 具有品牌的网站建设霞浦建设局网站
  • 推荐个网站免费的wordpress force ssl
  • app网站搭建做英文网站的心得
  • 东莞企业网站制作推广运营多样化的网站建设公司
  • 深圳做网站那里好提交网址给百度
  • 泰州企业建站系统中企动力科技做什么的
  • 唐山公司网站建设 中企动力唐山宽带动态ip如何做网站访问
  • 个人商城网站怎么做电商网站及企业微信订烟
  • 温州市网站优化广告平面设计教程
  • 南通制作网站的有哪些公司吗sae 部署wordpress
  • 友情链接对网站的影响wordpress admin init
  • 渭南网站开发做网红用哪个网站
  • 湖北建设网站wordpress 翻页电子书
  • 网站设计命名规范厦门建站比较好的公司
  • 用vs2010做网站登入前端培训费用大概多少郑州
  • 网站建设后的效果评估杭州网站制作公司
  • 3网站建设公司影楼修图用什么软件
  • 手机网站的内容模块多用户商城开源左
  • 库尔勒网站建站宝盒合作
  • 五河网站建设哪家好wordpress获取文章作者
  • 怎么修改网站内容wordpress ajax接口
  • 绵阳市城乡建设和规划局网站重庆网站建设公司有哪些
  • 宿迁网站建设公司排名展厅设计企业
  • 做家具定制的设计网站开阿里巴巴网站建设流程
  • 站长统计软件广州免费核酸在哪里做
  • 做soho一定要做网站吗在百度网站备案查询上显示未备案是什么意思
  • 移动公司营销网站设计html旅游网站模板
  • 专业生产车间设计图纸网站ui设计师证
  • 如何建网站教程视频10种网络营销方法