diff --git a/README.md b/README.md index 46197bf..be595ea 100644 --- a/README.md +++ b/README.md @@ -17,17 +17,17 @@ All you have to do to start using it in your project: 3. **You’re done!** Now you can get access to your database using sqlite-net. ;P # Example -If you want to try it I've uploaded a small example that you will be able to find in the "Example" folder. Download the folder and open it with Unity3d to give it a try. +If you want to try it I've uploaded a small example that you will be able to find in the "Example" folder. Download the folder and open it with Unity3d to give it a try. You will notice that I've placed a specific example for Unity 4.x and Unity 5. # iOS particularities -As you may know **iOS doesn't allow JIT compilation** so, generally speaking, you will have to be very careful when you use **reflection** in your code. For a more deeper explanation of this issue please refer to Google but making it short: you cannot create dynamic objects using reflection. How is this affecting SQLite4Unity3d? Well, **you can't use the linq syntax** when making queries to SQLite and **you will have to use the old sql syntax**. +As you may know **iOS doesn't allow JIT compilation** so, generally speaking, you will have to be very careful when you use **reflection** in your code. For a more deeper explanation of this issue please refer to Google but making it short: you cannot create dynamic objects using reflection. How is this affecting SQLite4Unity3d? Well, prior to this version you couldn't use very complicated queries. Now, **for basic queries you will have iOS support**. In case you stumple uppon a JIT compilation error it's time to use the old sql syntax. +# Plugins in several platforms +In general you won't find any issues with Android and iOS. When you start deploying your **WP version**, please take a look at the **readme files inside the plugins folder**. They will help you make it work without problems. # Acknowledgements This project is based on the work of: -- [@MvvmCross](https://github.com/MvvmCross/MvvmCross) - License: developed and distributed under Ms-Pl - see http://opensource.org/licenses/ms-pl.html - - [Sqlite-net](https://github.com/praeclarum/sqlite-net) - License: custom - see https://github.com/praeclarum/sqlite-net/blob/master/license.md