<configuration>
<issueLinkTemplatePerSystem>
<SourceForge2Features>http://sourceforge.net/p/jackcess/feature-requests/%ISSUE%</SourceForge2Features>
+ <SourceForge2Patches>http://sourceforge.net/p/jackcess/patches/%ISSUE%</SourceForge2Patches>
</issueLinkTemplatePerSystem>
</configuration>
<reportSets>
<action dev="jahlborn" type="fix" system="SourceForge2" issue="113">
Add newer sql type to access type mappings if the jvm supports them.
</action>
+ <action dev="jahlborn" type="fix" system="SourceForge2Patches" issue="17">
+ Fix table name quoting for append and make table queries.
+ </action>
</release>
<release version="2.0.7" date="2014-11-22">
<action dev="jahlborn" type="fix" system="SourceForge2" issue="111">
@Override
protected void toSQLString(StringBuilder builder)
{
- builder.append("INSERT INTO ").append(getTargetTable());
+ builder.append("INSERT INTO ");
+ toOptionalQuotedExpr(builder, getTargetTable(), true);
toRemoteDb(builder, getRemoteDbPath(), getRemoteDbType());
builder.append(NEWLINE);
List<String> values = getValues();
@Override
protected void toSelectInto(StringBuilder builder)
{
- builder.append(" INTO ").append(getTargetTable());
+ builder.append(" INTO ");
+ toOptionalQuotedExpr(builder, getTargetTable(), true);
toRemoteDb(builder, getRemoteDbPath(), getRemoteDbType());
}