oeg-upm / morph-rdb

Virtual Knowledge Graph Creation from RDB with R2RML
https://morph.oeg.fi.upm.es/tool/morph-rdb
Other
41 stars 38 forks source link

Update MorphRDBNodeGenerator.scala #49

Closed jatoledo closed 4 years ago

jatoledo commented 4 years ago

This is an error when you try to get a String and the column is double precision. E.g
val result = rs.getString(columnName); Solution is get the Object an apply toString val result = rs.getObject(columnName).toString();