5

I have an existing database where they created theiw own unicode collation sequence. I'm trying to use the following code and get a "no such collation sequence" exception. Can anybdy hlep with the the syntax to use "collate nocase" with this code?

update Songs set
SongPath = replace (SongPath, 'Owner.Funkytown', 'Jim');

Jim
  • 51
  • 2

1 Answers1

0

Dump database (via shell), edit output SQL (find and change column definitions, set COLLATION NOCASE). Recreate database.

SqliteDog
  • 86
  • 3