Skip to content

Commit

Permalink
Soporte para tipo de dato ANYDATA en replicas Oracle-Oracle
Browse files Browse the repository at this point in the history
  • Loading branch information
stalincalderon committed Jun 12, 2024
1 parent 5a1fd68 commit 3debec2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/org/replicadb/manager/OracleManager.java
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ public int insertDataToTable(ResultSet resultSet, int taskId) throws SQLExceptio
ps.setObject(i, resultSet.getObject(i),Types.STRUCT);
break;
default:
ps.setString(i, resultSet.getString(i));
ps.setObject(i, resultSet.getObject(i));//Cambiar getString por getObject para los tipos de dato ANYDATA
break;
}
}
Expand Down

0 comments on commit 3debec2

Please sign in to comment.