All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.centit.support.database.DBConnect Maven / Gradle / Ivy

Go to download

数据库操作通用方法和函数,从以前的util包中分离出来,并且整合了部分sys-module中的函数

There is a newer version: 5.3.2302
Show newest version
package com.centit.support.database;

import java.sql.Connection;

/**
 * 数据库连接信息,由于是使用的原生SQL(Native SQL)需要根据数据库类型做一些适应性操作,所有数据库类型信息
 * @author codefan
 *
 */
public interface DBConnect extends Connection {
	
	String getDatabaseCode(); 
	
	DBType getDatabaseType();
	
	Connection getConn();
	
	boolean startTransaction();
	
	boolean isInTransaction();
	
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy