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 textReturnedVery kind!AndyP wrote: Tue May 08, 2018 8:33 am This 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...SparkOut wrote: Tue May 08, 2018 2:07 pm <RF> tags in db could be request filter stored procedures.
To strip those there will be a one-liner replacetext regex. I am out using phone atm, otherwise I would play and test but it should be easy to eliminate stuff between the tags.