Ticket Hash: | 515cb60b10a36913d2d5eeefb09a34bc078afa9a | ||
Title: | Support for affinity type MEDIUMINT | ||
Status: | Closed | Type: | Feature_Request |
Severity: | Important | Priority: | Medium |
Subsystem: | Convert | Resolution: | Fixed |
Last Modified: | 2020-04-25 19:22:10 | ||
Version Found In: | 1.0.105.2 |
User Comments: | ||||
anonymous added on 2020-04-20 09:39:33:
The (affinity) type named MEDIUMINT does not get mapped to any corresponding DbType. The SQLiteDbTypeMap returned by SQLiteConvert.GetSQLiteDbTypeMap() does not contain the mapping needed. A solution would be adding the following row in SQLiteConvert.GetSQLiteDbTypeMap(): ... new SQLiteDbTypeMapping("MEDIUMINT", DbType.Int32, false), ... Thanks //Magnus Jöngren mistachkin added on 2020-04-25 14:01:51: Thanks for the report. I've changed the type to "feature request" and I'll look into adding this for the next release. mistachkin added on 2020-04-25 19:22:10: Fixed on trunk via check-in [b4eb15b5a5b8f5ae]. |