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

com.jd.blockchain.storage.service.DbConnectionFactory Maven / Gradle / Ivy

package com.jd.blockchain.storage.service;

import java.io.Closeable;

public interface DbConnectionFactory extends Closeable {

	/**
	 * 数据库连接前缀
	 * @return
	 */
	String dbPrefix();

	/**
	 * 是否支持指定 scheme 的连接字符串;
	 * @param scheme
	 * @return
	 */
	boolean support(String scheme);
	
	DbConnection connect(String dbConnectionString);
	
	DbConnection connect(String dbConnectionString, String password);
	
	@Override
	void close();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy