cheng
2024-12-24 3439303d687f347a80910817bb69118a849691bb
1
2
3
4
5
6
7
8
9
10
package com.product.datasource.dao;
 
import java.sql.Connection;
import java.sql.SQLException;
 
public interface ConnectionInterface {
 
    Connection getConnection() throws SQLException;
 
}