Open GoogleCodeExporter opened 8 years ago
once I changed on line in private void createIndex(final Index index, final
Connection jdbc) throws SQLException:
- final String uniqueString = index.isUnique() ? "UNIQUE" : "";
+ final String uniqueString = /*index.isUnique() ? "UNIQUE" :*/ "";
and the file is converted successfully (without any views/queries).
BTW I wonder if Views/Queries are supported in conversion.
Original comment by roy...@gmail.com
on 10 Dec 2010 at 3:15
Error is on populateTable method. On switch statement, a missing "i" is on
FLOAT case
case FLOAT:
prep.setDouble(+1, Double.parseDouble(row.get(
column.getName()).toString()));
break;
Should be "i+1" on index assigment.
case FLOAT:
prep.setDouble(i+1, Double.parseDouble(row.get(
column.getName()).toString()));
break;
Original comment by carlospo...@gmail.com
on 30 Sep 2013 at 5:11
Original issue reported on code.google.com by
roy...@gmail.com
on 10 Dec 2010 at 3:07