I'm building a data loader utility application (Win 7 64bit, VS 2008, C#, .Net 3.5, Win Forms) using Subsonic 2.2.
I've gotten everything working using SqlServer and now I need to get it working in Sqlite 3. I've worked through some issues but there is one I cannot resolve;
I have 2 columns, Latitude and Longitude that are FLOAT data types in sqlite and Subsonic generates as nullable floats. The code generation is fine, building is fine but when I attempt to run the application, when the object gets saved I get en error, "Can't save: Longitude exceeds the maximum length of 8."
My guess is that it's a verification issue in Subsonic as my Sqlite db has now issue with the data I have been loading into those columns.
Any Subsonic or Sqlite veterans out there have any suggestions, I am brand new to Subsonic and have only been working with Sqlite for about 6 months now.
Thanks, Geoff
The value that is causing the error is -122.41082 which is over 8 chars but I don't think that's the limit for a float in sqlite. Maybe I'm choosing poorly when it comes to data types?