网站首页 站内搜索

搜索结果

查询Tags标签: DBConn,共有 5条记录
  • Qt数据库应用11-通用数据生成器

    一、前言 有两种应用场景需要用到数据生成器,一种是需要测试数据库性能,比如在100万条和1000万条记录的时候对比查询或更新语句执行耗时,一种是随机模拟生成一堆数据,用来测试程序的性能,看下程序中到了百万千万级别的数据量的时候,程序的代码执行是否受影响,影响有…

    2022/2/18 19:13:14 人评论 次浏览
  • 简单的抽卡模拟器1.1

    连接了数据库 import java.sql.Connection; import java.sql.DriverManager;public class dataBase {private String driverName="com.microsoft.sqlserver.jdbc.SQLServerDriver"; //驱动private String dbURL="jdbc:sqlserver://localhost:1433;Database…

    2021/11/3 23:16:56 人评论 次浏览
  • 简单的抽卡模拟器1.1

    连接了数据库 import java.sql.Connection; import java.sql.DriverManager;public class dataBase {private String driverName="com.microsoft.sqlserver.jdbc.SQLServerDriver"; //驱动private String dbURL="jdbc:sqlserver://localhost:1433;Database…

    2021/11/3 23:16:56 人评论 次浏览
  • Effective C++ 笔记 —— Item 8: Prevent exceptions from leaving destructors.

    Destructors should never emit exceptions. If functions called in a destructor may throw, the destructor should catch any exceptions, then swallow them or terminate the program. 1. Terminate the program if close throws, typically by calling abort:DBCon…

    2021/8/28 17:06:51 人评论 次浏览
  • Effective C++ 笔记 —— Item 8: Prevent exceptions from leaving destructors.

    Destructors should never emit exceptions. If functions called in a destructor may throw, the destructor should catch any exceptions, then swallow them or terminate the program. 1. Terminate the program if close throws, typically by calling abort:DBCon…

    2021/8/28 17:06:51 人评论 次浏览
扫一扫关注最新编程教程