Skip to content

Commit

Permalink
Fixed a bug where the registration information was being sent twice. …
Browse files Browse the repository at this point in the history
…Also put the fetch size for streaming result sets into the dialect.
  • Loading branch information
chenson42 committed Oct 8, 2007
1 parent 70be07f commit 41e3a7f
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions symmetric/src/main/resources/symmetric-dialects.xml
Expand Up @@ -17,6 +17,7 @@
<bean id="mysqlDialect" class="org.jumpmind.symmetric.db.mysql.MySqlDbDialect"
scope="prototype">
<property name="tablePrefix" value="${sync.table.prefix}" />
<property name="streamingResultsFetchSize" value="${db.jdbc.streaming.results.fetch.size}" />
<property name="sqlTemplate">
<bean class="org.jumpmind.symmetric.db.SqlTemplate">
<property name="stringColumnTemplate" ref="mysqlStringTemplate" />
Expand Down Expand Up @@ -126,6 +127,7 @@
<bean id="oracleDialect" class="org.jumpmind.symmetric.db.oracle.OracleDbDialect"
scope="prototype">
<property name="tablePrefix" value="${sync.table.prefix}" />
<property name="streamingResultsFetchSize" value="${db.jdbc.streaming.results.fetch.size}" />
<property name="sqlTemplate">
<bean class="org.jumpmind.symmetric.db.SqlTemplate">
<property name="stringColumnTemplate" >
Expand Down

0 comments on commit 41e3a7f

Please sign in to comment.