Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Issue with Community.CsharpSqlite #28

Open
rajeshkomatlapalli opened this issue Jun 25, 2014 · 0 comments
Open

Issue with Community.CsharpSqlite #28

rajeshkomatlapalli opened this issue Jun 25, 2014 · 0 comments

Comments

@rajeshkomatlapalli
Copy link

Iam using SQLite 3.8.5 and sqlite-net 1.0.8 in Visual Studio 2012 Express Win Phone,SQLite

if WINDOWS_PHONE && !USE_WP8_NATIVE_SQLITE

define USE_CSHARP_SQLITE

endif

using System;
using System.Diagnostics;
using System.Runtime.InteropServices;
using System.Collections.Generic;
using System.Reflection;
using System.Linq;
using System.Linq.Expressions;
using System.Threading;

if USE_CSHARP_SQLITE

using Sqlite3 = Community.CsharpSqlite.Sqlite3;
using Sqlite3DatabaseHandle = Community.CsharpSqlite.Sqlite3.sqlite3;
using Sqlite3Statement = Community.CsharpSqlite.Sqlite3.Vdbe;

elif USE_WP8_NATIVE_SQLITE

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

else

using Sqlite3DatabaseHandle = System.IntPtr;
using Sqlite3Statement = System.IntPtr;

endif

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant