Please has anyone come across the above situation with Dapper and MySQL. In all my tables in MySQL (5.1), where the data type is BIT(1) or BIT, Dapper simply return such field as ulong (UInt64). I am using MySql.Data.MySqlClient and I have no such issue with EF which is what I am trying to convert from.

Thanks for any help.

link|improve this question
my gut is telling me this is an issue with the mysql driver ... can you repro the problem with straight ado.net ... eg select the column and get the value ... look at the type? – Sam Saffron Jul 18 '11 at 8:02
The simple workaround is to add a shadow property or field to your type – Sam Saffron Jul 18 '11 at 8:02
@Sam Saffron: I could not reproduce it with straight ADO.NET and also I tried PetaPoco, it did not have the same problem. I tried to investigate further, MySql actually returns 0 for false and 1 for true, why that shows up as ulong still beats me. Can you expand on what you mean by shadow property and how I can use it solve this. – Gboyega Sulaiman Jul 19 '11 at 18:35
@Sam Saffron: I have tried selecting only one bool field from the database, and I could see it stops on the direct cast (T)val in the GetStructDeserializer. A 0 or 1 (as ulong) cannot be directly casted to bool. A similar issue arise from the GetClassDeserializer as well. Would a special handling such as you did for char and char? incur performance penalty? – Gboyega Sulaiman Jul 19 '11 at 18:58
I have a similar problem with SQLite and INTEGER. A primary key is an INTEGER in the SQLite database (auto increment only works on INTEGER, for some reason), but my POCO has int. I expected it to cast down to int without problems (NHibernate does!). I really couldn't understand what in the Dapper code generates the casting (and why this generated cast fails), and I can't find any good documentation explaining what the generated IL really does. @sam-saffron - Adding a shadow property is hackish and I'd love an actual solution! – Christian Droulers Aug 31 '11 at 4:34
show 1 more comment
feedback

2 Answers

In MySQL, the type Boolean is mapped to Tinyint(1) with MySQL. Perhaps you will have to cast it to Boolean (0=false/1=true), Convert.toBoolean(UInt64) may help you (see http://msdn.microsoft.com/en-us/library/33f2zy48.aspx).

@Christian Droulers: The behaviour of SQLite is similar.

link|improve this answer
feedback

Why don't you do the casting in your sql query ?

cast(myField using TINYINT(1)) as myField 

Not sure abot the type here, but that's the way I do when my db type doesn't match my object's.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.