Hello there,
We use in Holland for a decimal separator a ',' ( comma ) The comma is also used to separate values in insert strings. We use a exestring like this:
UPDATE TBL_M_CMP SET M_CMP_GEOMETRY = MDSYS.SDO_GEOMETRY(2002,NULL, NULL, MDSYS.SDO_ELEM_INFO_ARRAY(1,2,1), MDSYS.SDO_ORDINATE_ARRAY(0,1 , 0,15, 0,44 , 0,34)) WHERE M_CMP_ID = 168;
When we try to let oracle eat this string oracle rejects it!!! ( of course )
How do i solve the problem with the comma's We already tried the '\' as a datalinkescape character but that also fails.
regards Ralph