in any colomn if text has single quotation mark('), sql will be broken.
for example, original title is "Knight's Tale, A" sql will be
"INSERT INTO Moviez (ORIGINALTITLE) VALUES ('A Knight뭩 Tale');"
Single quotation marks should like to change by two in sql export.
because of string surrounds by single quotation in sql. so must write two single quotation to denote single quotation mark.
and I will be appreciative if include the script.
thx.
there's another bug in sql export.
The SQL export replaces ' by a ´ (an acute accent, in the case it does not display correctly) in the titles.
But you are right, I should put two ' instead of a ´
(should work without problem with the ´ in the title, but I guess that you are using another character set in your Windows, and ´ is probably a special character that does not exist on non-latin character sets
)
But you are right, I should put two ' instead of a ´
(should work without problem with the ´ in the title, but I guess that you are using another character set in your Windows, and ´ is probably a special character that does not exist on non-latin character sets

Actually it puts an accent to replace the ' and then the S.
But it seems that on unicode systems the accent is used to specify than the next character is the second part of a multibyte character (multibyte unicode allows to have several thousands characters instead of standard latin ASCII extended 256 characters)
so accent+S becomes another character.
I guess that if I put "és" (e with accent followed by a S) in a text file you will see it as another character (one character that replaces the two that I wrote)
I will try to correct this problem in the following days.
I do not have lots of time, but it will done before next week-end.
But it seems that on unicode systems the accent is used to specify than the next character is the second part of a multibyte character (multibyte unicode allows to have several thousands characters instead of standard latin ASCII extended 256 characters)
so accent+S becomes another character.
I guess that if I put "és" (e with accent followed by a S) in a text file you will see it as another character (one character that replaces the two that I wrote)
I will try to correct this problem in the following days.
I do not have lots of time, but it will done before next week-end.