Closed luyinhua closed 3 years ago
mysql default is NOCASE in char/varchar/text field , but sqlite is default is not nocase ,can the command add a params to change nocase info
such as
CREATE TABLE User (UserName NVARCHAR(20) COLLATE NOCASE);
COLLATE NOCASE
Hey,
Thanx for the idea proposal. I'll add it probably over the coming weekend. :)
Added -C, --collation CLI option. It defaults to BINARY just like specified in the SQLite docs.
-C
--collation
BINARY
mysql default is NOCASE in char/varchar/text field , but sqlite is default is not nocase ,can the command add a params to change nocase info
such as
CREATE TABLE User (UserName NVARCHAR(20)
COLLATE NOCASE
);