We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 73dfcfa commit ef3abbdCopy full SHA for ef3abbd
etl/src/main/java/com/orientechnologies/orient/etl/extractor/OETLJDBCExtractor.java
@@ -105,7 +105,7 @@ public void begin(ODatabaseDocument db) {
105
columnTypes = new ArrayList<OType>(rsColumns);
106
107
for (int i = 1; i <= rsColumns; ++i) {
108
- final String colName = rs.getMetaData().getColumnName(i);
+ final String colName = rs.getMetaData().getColumnLabel(i);
109
columnNames.add(colName);
110
111
OType type = OType.ANY;
0 commit comments