System.Data.SQLite

Login
This project makes use of Eagle, provided by Mistachkin Systems.
Eagle: Secure Software Automation
2020-04-25
19:22 Closed ticket [515cb60b10]: Support for affinity type MEDIUMINT plus 4 other changes artifact: e5632e71c3 user: mistachkin
19:21
Support automatic value conversions for columns with a declared type of MEDIUMINT or MEDIUMUINT. Pursuant to [515cb60b10]. check-in: b4eb15b5a5 user: mistachkin tags: trunk
14:01 Ticket [515cb60b10] Support for affinity type MEDIUMINT status still Open with 7 other changes artifact: a769562bb4 user: mistachkin
2020-04-20
09:39 New ticket [515cb60b10]. artifact: 867a7c4aaf user: anonymous

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].