Navigation Menu

Skip to content

Commit

Permalink
expose the jdbctemplate for use.
Browse files Browse the repository at this point in the history
  • Loading branch information
chenson42 committed Oct 15, 2007
1 parent abd1732 commit ba9865a
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
Expand Up @@ -468,4 +468,8 @@ public int getStreamingResultsFetchSize() {
public void setStreamingResultsFetchSize(int streamingResultsFetchSize) {
this.streamingResultsFetchSize = streamingResultsFetchSize;
}

public JdbcTemplate getJdbcTemplate() {
return jdbcTemplate;
}
}
Expand Up @@ -26,6 +26,7 @@
import org.jumpmind.symmetric.model.DataEventType;
import org.jumpmind.symmetric.model.TriggerHistory;
import org.jumpmind.symmetric.model.Trigger;
import org.springframework.jdbc.core.JdbcTemplate;
import org.springframework.jdbc.support.SQLErrorCodeSQLExceptionTranslator;

public interface IDbDialect {
Expand Down Expand Up @@ -75,4 +76,6 @@ public void initTrigger(DataEventType dml, Trigger config,

public int getStreamingResultsFetchSize();

public JdbcTemplate getJdbcTemplate();

}

0 comments on commit ba9865a

Please sign in to comment.