I am new in Xamarin.form development so i need help to work with SQLite. Help Me
I would suggest you take a look in the Xamarin documentation for Xamarin.Forms and SQLLite:https://developer.xamarin.com/guides/cross-platform/xamarin-forms/working-with/databases/
Or do you have a specific question?
https://www.nuget.org/packages/SQLite.Net-PCL
Thanks Nicholas, Do you have any other sample project , that link is not much better for freshers.
https://github.com/oysteinkrog/SQLite.Net-PCL?files=1
thanks Alessandro, do you have any sample sqlite used app which you created
you can find an example here
https://www.dropbox.com/s/fbjrfrxxfzcbd3u/TestSqlite.zip?dl=0
It has a PCL Xamarin Forms project and and Android project (for iOS you have to implement then same thing present in MainActivity...)
You find (in App.cs) the creation of a table and 2 buttons. One for insert a record, One for read the table...
Hope this can help you
Answers
I would suggest you take a look in the Xamarin documentation for Xamarin.Forms and SQLLite:
https://developer.xamarin.com/guides/cross-platform/xamarin-forms/working-with/databases/
Or do you have a specific question?
https://www.nuget.org/packages/SQLite.Net-PCL
Thanks Nicholas, Do you have any other sample project , that link is not much better for freshers.
https://github.com/oysteinkrog/SQLite.Net-PCL?files=1
thanks Alessandro, do you have any sample sqlite used app which you created
you can find an example here
https://www.dropbox.com/s/fbjrfrxxfzcbd3u/TestSqlite.zip?dl=0
It has a PCL Xamarin Forms project and and Android project (for iOS you have to implement then same thing present in MainActivity...)
You find (in App.cs) the creation of a table and 2 buttons. One for insert a record, One for read the table...
Hope this can help you