
I got it to open the database but when it imports the database it makes a mess of the text when ever it finds an accent or any character that is extended.
Thank you for your help.
I come from VB, RealBasic, js, etc.
Thanks for your help
Moderators: FourthWorld, heatherlaine, Klaus, kevinmiller
Code: Select all
// the column in the db is Summary, and it contained tabs, returns, etc.
// although not strictly necessary, I also wrapped the column name with ` `...
REPLACE(`Summary`,X'09',CAST( ' ' as text ))
And so on. I need anything in <RF> not to show.And God called the light Day, and the darkness he called Night. And the evening and the morning were the first day.<RF>And the evening…: Heb. And the evening was, and the morning was<Rf><CM>
Code: Select all
put textDecode(textReturned,"UTF8") into textReturned
Very kind!AndyP wrote: ↑Tue May 08, 2018 8:33 amThis sounds like a Unicode problem.
try this on the result returned from the db query (textReturned)
Code: Select all
put textDecode(textReturned,"UTF8") into textReturned
Would love to see that being used...