# study-notes-jdbc **Repository Path**: gaoqinglong/study-notes-jdbc ## Basic Information - **Project Name**: study-notes-jdbc - **Description**: 本人在日常工作学习中写过的一些学习性质的案例代码 - **Primary Language**: Java - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2026-06-12 - **Last Updated**: 2026-06-22 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # JAVA JDBC
JDBC(Java Database Connectivity)是一个独立于特定数据库管理系统(DBMS)、通用的SQL数据库存取和操作的公共接口(一组API),定义了用来访问数据库的标准Java类库,使用这个类库可以以一种标准的方法、方便地访问数据库资源。
## Table of Contents * [Get Connection of DataBase](#connection) * [JDBCUtils](#JDBCUtils) * [PreparedStatement实现CRUD操作](#PreparedStatementCRUD) * [PreparedStatement操作Blob类型变量](#PreparedStatementBlob) * [PreparedStatement实现高效批量插入](#PreparedStatementAddBatch) * [数据库的事务](#数据库的事务) * [数据库连接池(DBCP/C3P0/Druid)](#数据库连接池(DBCP/C3P0/Druid)) * [DBUtils实现CRUD操作](#DBUtils实现CRUD操作)