Skip to content

Commit 41f28fb

Browse files
readme mod and plugins folder deleted
1 parent 58c7435 commit 41f28fb

File tree

14 files changed

+5
-30
lines changed

14 files changed

+5
-30
lines changed
-326 KB
Binary file not shown.
-672 KB
Binary file not shown.

Plugins/SQLite4Unity3d.dll

-52 KB
Binary file not shown.

Plugins/WP8/ARM/SQLite4Unity3d.dll

-51.5 KB
Binary file not shown.

Plugins/WP8/ARM/Sqlite.dll

-61 KB
Binary file not shown.

Plugins/WP8/ARM/Sqlite.winmd

-5 KB
Binary file not shown.

Plugins/WP8/README_Unity_4x.txt

Lines changed: 0 additions & 13 deletions
This file was deleted.

Plugins/WP8/README_Unity_5.txt

Lines changed: 0 additions & 13 deletions
This file was deleted.

Plugins/WP8/x86/SQLite4Unity3d.dll

-51.5 KB
Binary file not shown.

Plugins/WP8/x86/Sqlite.dll

-60 KB
Binary file not shown.

Plugins/WP8/x86/Sqlite.winmd

-5 KB
Binary file not shown.

Plugins/x64/sqlite3.dll

-1.05 MB
Binary file not shown.

Plugins/x86/sqlite3.dll

-606 KB
Binary file not shown.

README.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44
# What's this?
55
When I started with Unity3d development I needed to use SQLite in my project and it was very hard to me to find a place with simple instructions on how to make it work. All I got were links to paid solutions on the Unity3d's Assets Store and a lot of different and complicated tutorials.
66

7-
At the end, I decided that there should be a simpler way and I created **SQLite4Unity3d**, a library that helps you to use SQLite in your Unity3d projects in a clear and easy way and works in **iOS, Android and Windows Phone** projects.
7+
At the end, I decided that there should be a simpler way and I created **SQLite4Unity3d**, a plugin that helps you to use SQLite in your Unity3d projects in a clear and easy way and works in **iOS, Android and Windows** projects.
88

9-
Besides that, it uses the great [sqlite-net](https://github.com/praeclarum/sqlite-net) library as a base so you will have **Linq besides sql**. For a further reference on what possibilities you have available with this library I encourage you to visit [its github repository](https://github.com/praeclarum/sqlite-net).
9+
It uses the great [sqlite-net](https://github.com/praeclarum/sqlite-net) library as a base so you will have **Linq besides sql**. For a further reference on what possibilities you have available with this library I encourage you to visit [its github repository](https://github.com/praeclarum/sqlite-net).
1010

1111
*Note: _SQLite4Unity3d uses only the synchronous part of sqlite-net, so all the calls to the database are synchronous._
1212

@@ -17,6 +17,7 @@ All you have to do to start using it in your project:
1717

1818
1. [Download this zip](https://github.com/codecoding/SQLite4Unity3d/raw/master/Plugins.zip) and **copy the resulting folder to your Assets/Plugins folder**. It contains the dlls that Unity3d will need to access sqlite.
1919
2. Don’t forget to **copy your SQLite database file in your Assets/StreamingAssets folder if you’re shipping one**.
20+
4. **Copy the SQLite.cs** file into your scripts folder.
2021
3. **You’re done!** Now you can get access to your database using sqlite-net. ;P
2122

2223
# Example
@@ -25,8 +26,8 @@ If you want to try it I've uploaded a small example that you will be able to fin
2526
# iOS particularities
2627
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 stumble uppon a JIT compilation error it's time to use the old sql syntax.
2728

28-
# Plugins in several platforms
29-
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.
29+
# Windows particularities
30+
In general you won't find any issues with Android and iOS. For **Windows versions**, please take a look at the **wiki** for more details on how to proceed.
3031

3132
# Acknowledgements
3233
This project is based on the work of:

0 commit comments

Comments
 (0)