06 2021 档案
摘要:PreparedStatement针对不同表的通用查询操作 public class PreparedStatementQueryTest { @Test public void testGetForList(){ String sql="select id,name,email from cust
阅读全文
摘要:PreparedStatement实现通用的增删改操作 public void testCommonUpdate() throws Exception { String sql="update customers set name=? where id=?"; update(sql,"wtf",19
阅读全文
摘要:封装数据库连接和关闭操作 @Test public void testUpdate() throws Exception{ //1、获取数据库连接 Connection conn= JDBCUtils.getConnection(); // 2、预编译sql语句,返回PreparedStatemen
阅读全文
摘要:PreparedStatement方法执行sql语句 package com.lwb.preparedstatement.crud; import org.junit.jupiter.api.Test; import java.io.InputStream; import java.sql.Conn
阅读全文
摘要:package com.lwb.connection; import org.junit.jupiter.api.Test; import java.io.InputStream; import java.sql.Connection; import java.sql.Driver; import
阅读全文
摘要:javascript的一个找零的小程序 <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <script type="text/javascript"> function check(){ var sum=document.
阅读全文