<author email="javajedi@users.sf.net">Tim McCune</author>
</properties>
<body>
+ <release version="2.1.4" date="TBD">
+ <action dev="jahlborn" type="fix" system="SourceForge2" issue="131">
+ Fix missing column names in AppendQuery SQL strings.
+ </action>
+ </release>
<release version="2.1.3" date="2015-12-04">
<action dev="jahlborn" type="fix" system="SourceForge2" issue="127">
Throw a prettier exception when maxing out the row size during row
return getTypeRow().name1;
}
+ public List<String> getTargetColumns() {
+ return new RowFormatter(getTargetRows()) {
+ @Override protected void format(StringBuilder builder, Row row) {
+ toOptionalQuotedExpr(builder, row.name2, true);
+ }
+ }.format();
+ }
+
public String getRemoteDbPath() {
return getTypeRow().name2;
}
return getTypeRow().expression;
}
+ public List<String> getValues() {
+ return new RowFormatter(getValueRows()) {
+ @Override protected void format(StringBuilder builder, Row row) {
+ builder.append(row.expression);
+ }
+ }.format();
+ }
+
protected List<Row> getValueRows() {
return filterRowsByFlag(super.getColumnRows(), APPEND_VALUE_FLAG);
}
return filterRowsByNotFlag(super.getColumnRows(), APPEND_VALUE_FLAG);
}
- public List<String> getValues() {
- return new RowFormatter(getValueRows()) {
- @Override protected void format(StringBuilder builder, Row row) {
- builder.append(row.expression);
- }
- }.format();
+ protected List<Row> getTargetRows() {
+ return new RowFilter() {
+ @Override protected boolean keep(Row row) {
+ return (row.name2 != null);
+ }
+ }.filter(super.getColumnRows());
}
@Override
{
builder.append("INSERT INTO ");
toOptionalQuotedExpr(builder, getTargetTable(), true);
+ List<String> columns = getTargetColumns();
+ if(!columns.isEmpty()) {
+ builder.append(" (").append(columns).append(')');
+ }
toRemoteDb(builder, getRemoteDbPath(), getRemoteDbType());
builder.append(NEWLINE);
List<String> values = getValues();
public String getTargetTable();
+ public List<String> getTargetColumns();
+
public String getRemoteDbPath();
public String getRemoteDbType();
"WHERE (((Table1.col1)>\"blah\"));"));
expectedQueries.put(
"AppendQuery",multiline(
- "INSERT INTO Table3",
+ "INSERT INTO Table3 (col2, col2, col3)",
"SELECT [Table1].[col2], [Table2].[col2], [Table2].[col3]",
"FROM Table3, Table1 INNER JOIN Table2 ON [Table1].[col1]=[Table2].[col1];"));
expectedQueries.put(
}
}
+ public void testAppendQuery() throws Exception
+ {
+ AppendQuery query = (AppendQuery)newQuery(
+ Query.Type.APPEND, null, "Table2",
+ // newRow(TABLE_ATTRIBUTE, null, "Table1", null),
+ newRow(COLUMN_ATTRIBUTE, "54", APPEND_VALUE_FLAG, null, null),
+ newRow(COLUMN_ATTRIBUTE, "'hello'", APPEND_VALUE_FLAG, null, null));
+
+ assertEquals(multiline("INSERT INTO Table2",
+ "VALUES (54, 'hello');"), query.toSQLString());
+
+ query = (AppendQuery)newQuery(
+ Query.Type.APPEND, null, "Table2",
+ // newRow(TABLE_ATTRIBUTE, null, "Table1", null),
+ newRow(COLUMN_ATTRIBUTE, "54", APPEND_VALUE_FLAG, null, "ID"),
+ newRow(COLUMN_ATTRIBUTE, "'hello'", APPEND_VALUE_FLAG, null, "Field 3"));
+
+ assertEquals(multiline("INSERT INTO Table2 (ID, [Field 3])",
+ "VALUES (54, 'hello');"), query.toSQLString());
+ }
+
private void doTestColumns(SelectQuery query) throws Exception
{
addRows(query, newRow(COLUMN_ATTRIBUTE, "Table1.id", null, null));