I need to create sqlite database in Unity (C#) for android project, but can not find required information or tutorials.
I am following this link http://answers.unity3d.com/questions/743400/database-sqlite-setup-for-unity.html
But I get this error:
Failed to load 'Assets/Plugins/sqlite3.dll', expected 64 bit architecture (IMAGE_FILE_MACHINE_AMD64), but was IMAGE_FILE_MACHINE_I386.
Mono.Data.Sqlite.SqliteConnection:Open()
Mono.Data.Sqlite.SqliteConnection:Open()
Failed to load 'Assets/Plugins/sqlite3.dll', expected 64 bit architecture (IMAGE_FILE_MACHINE_AMD64), but was IMAGE_FILE_MACHINE_I386.
Mono.Data.Sqlite.SQLite3:Open(String, SQLiteOpenFlagsEnum, Int32, Boolean)
Mono.Data.Sqlite.SQLite3:Open(String, SQLiteOpenFlagsEnum, Int32, Boolean)
Mono.Data.Sqlite.SqliteConnection:Open()
DllNotFoundException: Assets/Plugins/sqlite3.dll
Mono.Data.Sqlite.SQLite3.Open (System.String strFilename, SQLiteOpenFlagsEnum flags, Int32 maxPoolSize, Boolean usePool)
Mono.Data.Sqlite.SqliteConnection.Open ()
I am using Unity 5 (free version).
Are there any free plugins for sqlite database ?
Please provide me tutorials links if possible.
unityscripttag withC#.