You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to servic...@googlegroups.com
When I use ormlite to create a sqlite table it's creating datetime fields as varchar(8000) is there a way to change this behavior? I tried changing the dialect providers DateTimeColumnDefinition to "DATETIME" but that didn't work.
Demis Bellot
unread,
Jun 1, 2012, 6:29:47 PM6/1/12
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to servic...@googlegroups.com
There is no DateTime data type in Sqlite, so we store dates as strings:
When I use ormlite to create a sqlite table it's creating datetime fields as varchar(8000) is there a way to change this behavior? I tried changing the dialect providers DateTimeColumnDefinition to "DATETIME" but that didn't work.