Using LO Version: 6.2.8.2 (x64)
With fresh install of JVM
Created a firebird db
Imported a csv using the Copy from calc - Paste to a new table method. All columns (except ID) automatically created as VARCHAR 255.
Can successfully use a simple select with simple where clause. Such as:
SELECT * FROM Table1 WHERE OtherInfo = 'Tel ’
When attempting this select
SELECT * FROM Table1 WHERE SUBSTRING(OtherInfo, 1, 4) = 'Tel ’
I get this error:
Error code: 1
firebird_sdbc error:
*Dynamic SQL Error
*SQL error code = -104
*Token unknown - line 1, column 53
*, caused by 'isc_dsql_prepare'
I have searched for hours and cannot find a solution. I tried running the macro suggested in LO Bug link text
It appears that the use of the SUBSTRING is calling a parsing function that is not working.
Any idea what is wrong?
thanks