Given the following table:
Code: Select all
CREATE TABLE test_table (
I Integer(11),
txt Text CHARACTER SET utf8 COLLATE utf8_general_ci,
txt_ascii Text CHARACTER SET latin1 COLLATE latin1_swedish_ci,
PRIMARY KEY (
i
)
) ENGINE=MyISAM ROW_FORMAT=dynamic DEFAULT CHARACTER SET latin1 COLLATE latin1_swedish_ci;If I set UseUnicode to True in the connection component, both of the Text columns come back as WideMemo, if I do not, both seem to come back as Memo.
Got a clue?
With regards,
Martijn Tonies
Upscene Productions