public Connection getConnection() throws SQLException { try { Class.forName(PropertiesUtil.getString("jdbc.driver")); } catch (ClassNotFoundException e) { e.printStackTrace(); } String url = PropertiesUtil.getString("jdbc.url"); String user = PropertiesUtil.getString("jdbc.username"); String password = PropertiesUtil.getString("jdbc.password"); Connection conn = (Connection) DriverManager.getConnection(url,user,password); return conn; } /** * 注:Oracle键必须是大写的 * @param sql * @param params * @return * @throws SQLException */ public List<Map<String, Object>> query(String sql, Object[] params) throws SQLException { Connection connection = getConnection(); PreparedStatement ps = connection.prepareStatement(sql); if (params != null) { for (int i = 0; i < params.length; i++) { ps.setObject((i + 1), params[i]); } } ResultSet rs = ps.executeQuery(); ResultSetMetaData rsmd = rs.getMetaData(); int column_count = rsmd.getColumnCount(); List<String> fields = new ArrayList<String>(); for (int i = 1; i <= column_count; i++) { String field = rsmd.getColumnName(i); fields.add(field); } List<Map<String, Object>> result = new ArrayList<Map<String, Object>>(); while (rs.next()) { Map<String, Object> record = new HashMap<String, Object>(); for (String field : fields) { Object value = rs.getObject(field); record.put(field, value); } result.add(record); } if(rs!=null){ rs.close(); } if(ps!=null){ ps.close(); } if(connection!=null){ connection.close(); } return result; } /** * * @param sql * @param params * @param alias 总数别名 * @return * @throws Exception */ public int queryCount(String sql, Object[] params,String alias) throws Exception { Connection connection = getConnection(); PreparedStatement ps = connection.prepareStatement(sql); if (params != null) { for (int i = 0; i < params.length; i++) { ps.setObject((i + 1), params[i]); } } ResultSet rs = ps.executeQuery(); int count = 0; if (rs.next()) { count = rs.getInt(alias); } if(rs!=null){ rs.close(); } if(ps!=null){ ps.close(); } if(connection!=null){ connection.close(); } return count; } public int update(String sql, Object[] params) throws SQLException { Connection connection = getConnection(); PreparedStatement ps = connection.prepareStatement(sql); if (params != null) { for (int i = 0; i < params.length; i++) { ps.setObject((i + 1), params[i]); } } int count = ps.executeUpdate(); if(ps!=null){ ps.close(); } if(connection!=null){ connection.close(); } return count; } public int updateForID(String sql, Object[] params) throws SQLException { Connection connection = getConnection(); PreparedStatement ps = connection.prepareStatement(sql,Statement.RETURN_GENERATED_KEYS); if (params != null) { for (int i = 0; i < params.length; i++) { ps.setObject((i + 1), params[i]); } } int count = ps.executeUpdate(); ResultSet rs = ps.getGeneratedKeys(); int id = 0; if (rs.next()) { Object generatedKeys = rs.getObject(1); id = StringUtil.toInt(generatedKeys); } //若插入多条,只返回第一条的id if (rs!=null) { rs.close(); } if(ps!=null){ ps.close(); } if(connection!=null){ connection.close(); } return id; } public void batchUpdate(String sql, List<Object[]> list) throws SQLException { Connection connection = getConnection(); connection.setAutoCommit(false); PreparedStatement ps = connection.prepareStatement(sql); for (Object[] param : list) { for (int i = 0; i < param.length; i++) { ps.setObject((i + 1), param[i]); } ps.addBatch(); } int[] counts = ps.executeBatch(); connection.setAutoCommit(true); if(ps!=null){ ps.close(); } if(connection!=null){ connection.close(); } } /** * 查询mysql中的所有表 * @return * @throws SQLException */ public List<String> queryTables() throws SQLException{ String sql = "show tables"; Connection connection = getConnection(); PreparedStatement ps = connection.prepareStatement(sql); ResultSet rs = ps.executeQuery(); List<String> result = new ArrayList<String>(); while (rs.next()) { String table_name = rs.getString("Tables_in_house"); result.add(table_name); } if(rs!=null){ rs.close(); } if(ps!=null){ ps.close(); } if(connection!=null){ connection.close(); } return result; } public Map<String, String> queryTableColumn(String table) throws SQLException{ String sql = " select * from "+table+" where 1=2 "; Connection connection = getConnection(); PreparedStatement ps = connection.prepareStatement(sql); ResultSet rs = ps.executeQuery(); ResultSetMetaData rsmd = rs.getMetaData(); int column_count = rsmd.getColumnCount(); // List<String> fields = new ArrayList<String>(); Map<String, String> fields = new HashMap<String, String>(); for (int i = 1; i <= column_count; i++) { String field = rsmd.getColumnName(i); String type = rsmd.getColumnTypeName(i); fields.put(field, type); // System.out.println(field+"-"+type); } if(rs!=null){ rs.close(); } if(ps!=null){ ps.close(); } if(connection!=null){ connection.close(); } return fields; }
<audio controls="controls" style="display: none;"></audio>
相关推荐
$my = new MysqlDao(); echo $my->pdo_delete(MODULE.'_network_list', array('id' => 17, 'uniacid' => 6)); $sql = 'select * from '.tablename(MODULE.'_network_list').' where uniacid=? and end_time<? ...
自己写的Dao模式的资源。 java直接调用。一个工具类
在这个"Mysql DAO模式上机练习 参考作业"中,我们可以深入学习如何在Java环境下使用DAO模式来操作MySQL数据库。 首先,`entity`目录可能包含了项目中的实体类(Entity Classes)。在DAO模式中,实体类是用来映射...
4. **tornado_mysql的DAO实现**: 在tornado_mysql中,我们可以创建一个自定义的DAO类,继承自`tornado_mysql.pool.PoolBase`或`tornado_mysql.Connection`。这个类将包含一系列与数据库交互的方法,如`select()`, `...
public class MySQLDAO implements DAO { // 实现MySQL数据库的保存、更新、删除和查询方法 } public class DAOFactory { public static DAO createDAO(String dbType) { if ("mysql".equalsIgnoreCase(dbType))...
在这个特定的例子中,我们看到一个名为`mySqlDao`的类,它继承自`JComponent`,并用于处理与MySQL数据库的交互。 首先,`mySqlDao`类中定义了几个关键属性: 1. `UserName` 和 `PWD`:分别存储数据库的用户名和密码...
开发一个高校竞赛报名管理系统,采用 Web 方式,由前台和后台管理两个部分组成。前台作为与用户 直接交互的可视化界面,后台管理的维护工作主要由系统管理员进行,包括完成对数据的保护和修改。...
在DAO场景中,工厂方法可以用来创建不同类型的DAO,比如MySQLDAO、OracleDAO等,而客户端只需调用工厂方法,无需关心具体实现。 2. **抽象工厂(Abstract Factory)**:提供一个创建一系列相关或相互依赖对象的接口...
例如,假设我们有一个数据库访问对象的接口DAO,有多个不同的实现,如MySQLDAO、OracleDAO等。工厂类可以根据配置文件中的数据库类型动态决定创建哪种类型的DAO对象,而这个决策过程就可能利用反射来完成。这样,...
2. **MYSQLDAO.cst**:此模板专注于生成MySQL数据库相关的DAO类。MySQL是一种广泛使用的开源关系型数据库,它的DAO模板通常会包含针对MySQL特性的SQL语句和连接管理。codesmith可以根据此模板快速构建针对MySQL...
在DAO设计模式中,可能会有一个DAO工厂类,根据传入的数据类型或数据库连接信息,返回相应的DAO对象,如MySQLDAO、OracleDAO等,这些都是实现了相同DAO接口的具体产品类。 简单工厂模式的优点在于: 1. 客户端代码...
通过一个DAOFactory,可以根据需求动态地返回不同类型的DAO对象,如MySQLDAO、OracleDAO等。这种设计允许系统在运行时决定使用哪种数据库,增加了系统的灵活性。 3. 单例模式:为了确保在整个应用程序中只有一个...
本压缩包"mysql_generator"正是提供了这样一个功能,它能帮助我们自动生成MySQL的持久层DAO(Data Access Object)、实体类以及映射文件Mapper。 首先,我们需要了解DAO模式。DAO模式是一种常用的设计模式,它的...
在这个实例中,我们将探讨如何在JSP中直接调用DAO层来获取MySQL数据库中的数据。这涉及到几个关键概念和技术,包括Java编程、SQL查询、JDBC(Java Database Connectivity)以及MVC(Model-View-Controller)设计模式...
MySQL数据库的自动化代码生成是开发过程中的一大效率提升工具,尤其在Java Web开发中,它可以显著减少手动编写数据访问对象(DAO)和实体类(通常称为POJO,Plain Old Java Object)的工作量。在这个场景中,我们...
一个DAO工厂类可以根据需要返回特定类型的DAO对象,例如MySQLDAO。这样,客户端代码无需直接new一个具体的DAO,而是通过工厂方法获取,增加了代码的灵活性和可扩展性。如果未来需要更换数据库,只需修改工厂类以返回...
【标题】"DAO.rar_MyEclipse dao_dao mysql_myeclipse jsp DAO_myeclipse mysq" 提供的信息表明,这是一个关于使用MyEclipse 7.0开发的项目,其中涉及了DAO(数据访问对象)模式的设计,该设计与MySQL数据库以及JSP...
Java连接MySQL数据库以及进行基本的DAO(Data Access Object)操作是Java后端开发中的常见任务。这个主题涵盖了许多重要的知识点,包括JDBC(Java Database Connectivity)API的使用、数据库连接池的配置、SQL语句的...
本系统自带了分页组件.DAO设计模式.分享给各位网友分享!
private MysqlDao mysqlDao; @Scheduled(fixedRate = 5*1000) public void deleteInvalidCheckCode() { mysqlDao.deleteInvalidCheckCode(); } } ``` 第二种方式:自定义配置类 第二种方式是通过自定义配置类...