shicf
2026-02-02 73f296c0d9b42e868af7841f84218b129fd4f041
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;
 
}