techouse / sqlite3-to-mysql

Transfer data from SQLite to MySQL

Home Page:https://techouse.github.io/sqlite3-to-mysql/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

mysql-string-type argument has no effect

yonglezhu opened this issue · comments

I want to set mysql-string-type argument to MEDIUMTEXT,but has no effect,string values from sqlite always convert to TEXT type

version 1.4.8,1.4.9 both have this issue

Hey!

Thanks for the bug report. I only factored in TEXT and completely forgot about MEDIUMTEXT and LONGTEXT.

I'll fix it ASAP.

I added this parameter now to specifically address TEXT (rather than strings)

--mysql-text-type [TINYTEXT|MEDIUMTEXT|TEXT|LONGTEXT]
                                  MySQL default text field type. Defaults to
                                  TEXT.

I added this parameter now to specifically address TEXT (rather than strings)

--mysql-text-type [TINYTEXT|MEDIUMTEXT|TEXT|LONGTEXT]
                                  MySQL default text field type. Defaults to
                                  TEXT.

Greate!