1
2
3
4
5
6
7
8
9
10
11
12
13
14
| package cn.net.communion.dbdatasync.dbhelper;
|
| import java.sql.Connection;
| import java.sql.SQLException;
|
| import cn.net.communion.dbdatasync.entity.JobInfo;
|
| public interface DbHelper {
| public String assembleSQL(String paramString, Connection paramConnection, JobInfo paramJobInfo)
| throws SQLException;
| public void executeSQL(String sql, Connection conn)
| throws SQLException;
|
| }
|
|