-
Notifications
You must be signed in to change notification settings - Fork 160
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
long as PrimaryKey is problem in transactions(SQL logic error)? #144
Comments
Hmm, I don't know too much about why this could fail, but I am curious why you think it is not a sqlite error? |
I just saw this: |
I've cherry-picked that commit now, please test with HEAD. |
why do you think I can't do updates in transaction ? If I use GUID => string It also don't work. :( I tested sqlite in qt 5.4.1 and all works fine but they have 6-8 months older sqlite |
I made wp silverlight c# version that call sqlite methods directly this is C version it is all again same version of sqlite 3.8.8.3 so only different is wrapper to silverlight or sqlite compiled with different parameters I am going to check for .net to native wrapper |
so I don't know if sqlite use WINDOWS TEMP folder by default or not but with simple PRAGMA temp_store=2; you keep your log in memmory I don't know why |
Hmm, ok, so this is a limitation in sqlite on that platform. |
Ok, I merged #157 which sets temp dir for WinRT platform. |
@xlazom00 Have you had a chance to test the current prerelase nuget? |
When I use long for primary key I have this really wired issue and I don't think it is sqlite problem
on second sql update I get
"SQL logic error"
I don't have this problem when I use int as primary key
Any idea?
SQLiteConnection _db;
string DBconnectionString = String.Format("{0}\db.sqlite", Windows.Storage.ApplicationData.Current.LocalFolder.Path);
The text was updated successfully, but these errors were encountered: