Dear all,
Is there a way to get the RDF datatype for a given oracle data type before actually generating the triples?
For instance, the following query returns the Oracle datatypes of given owner/table/column:
SELECT data_type
FROM all_tab_columns
WHERE OWNER = '<owner>'
AND TABLE_NAME = '<table>'
AND COLUMN_NAME = '<column>'
But it is possible to also get the correspondent RDF datatype using only a SQL query like the above one? E.g. NUMBER gives me xsd:decimal
Thanks in advance,
Elisa.