1

I am working on windows phone 8 Thy type or namespace name 'SqLite' could not be found (are you missing a using directive or an assembly reference?)

My process was

  • I cloned git repo into my local.
  • I added that c++ project (Sqlite) into my existing project.
  • Than i added Sqlite-net ( SQLite.cs and SQLiteAsync.cs) into my project.
  • Than created USE_WP8_NATIVE_SQLITE compilation symbol successfully.

But than i build my project it shows same error for three lines in "SQLite.cs" which are following.

using Sqlite3 = Sqlite.Sqlite3;
using Sqlite3DatabaseHandle = Sqlite.Database;
using Sqlite3Statement = Sqlite.Statement;

Please help me to solve this problem, my VS2012 is well configured and fulfilling the requirment for creation Sqlite DB into WP8.

Need Help, Thanks in advance.

4

1 回答 1

0

我已经成功完成,我错过了添加 sqlite 现有项目作为参考的一步。因此,在完成所有步骤后,我必须在现有项目中添加 SQLite 现有项目作为参考。

它工作得很好。谢谢你们。

于 2013-10-16T06:08:02.703 回答