Do you know a java-function to split an INSERT statement
INSERT INTO mytable (col1, col2, col3) VALUES ('val1', 'val2,andmore', 123)
into a map:
col1 => "val1"
col2 => "val2,andmore"
col3 => 123
(I don’t need the ESCAPE clause of Oracle for the time)
I have found no solution but build my own function