aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Data/SQLite/SQLiteEstateData.cs
diff options
context:
space:
mode:
authorTeravus Ovares (Dan Olivares)2010-09-23 01:21:08 -0400
committerTeravus Ovares (Dan Olivares)2010-09-23 01:21:08 -0400
commit983c6a74b15f566a9d2290b545f2b56b74f05f58 (patch)
tree1cc5495bbacc8bf844c20176746fa0ae05061814 /OpenSim/Data/SQLite/SQLiteEstateData.cs
parent* Pushing the Community.CSharpSqlite.Sqlite dll's I built. This is a slight... (diff)
downloadopensim-SC_OLD-983c6a74b15f566a9d2290b545f2b56b74f05f58.zip
opensim-SC_OLD-983c6a74b15f566a9d2290b545f2b56b74f05f58.tar.gz
opensim-SC_OLD-983c6a74b15f566a9d2290b545f2b56b74f05f58.tar.bz2
opensim-SC_OLD-983c6a74b15f566a9d2290b545f2b56b74f05f58.tar.xz
* Add CSharpSqlite to prebuild
* Use a conditional define to determine whether we're using CSharpSqlite or Mono.Data.Sqlite #if CSharpSqlite using Community.CsharpSqlite.Sqlite; #else using Mono.Data.Sqlite; #endif * Hopefully, this will restore sqlite functionality on a Mac. In visual studio, you can edit the OpenSim.Data.SQLite project, go to the Build tab and enter CSharpSqlite in the box. I'm not sure how to define CSharpSqlite in Mono, someone better at it then me will have to take the job of figuring out the best way to define it in Mono.
Diffstat (limited to 'OpenSim/Data/SQLite/SQLiteEstateData.cs')
-rw-r--r--OpenSim/Data/SQLite/SQLiteEstateData.cs6
1 files changed, 5 insertions, 1 deletions
diff --git a/OpenSim/Data/SQLite/SQLiteEstateData.cs b/OpenSim/Data/SQLite/SQLiteEstateData.cs
index d1d67eb..21556da 100644
--- a/OpenSim/Data/SQLite/SQLiteEstateData.cs
+++ b/OpenSim/Data/SQLite/SQLiteEstateData.cs
@@ -30,7 +30,11 @@ using System.Collections.Generic;
30using System.Data; 30using System.Data;
31using System.Reflection; 31using System.Reflection;
32using log4net; 32using log4net;
33using Mono.Data.Sqlite; 33#if CSharpSqlite
34 using Community.CsharpSqlite.Sqlite;
35#else
36 using Mono.Data.Sqlite;
37#endif
34using OpenMetaverse; 38using OpenMetaverse;
35using OpenSim.Framework; 39using OpenSim.Framework;
36using OpenSim.Region.Framework.Interfaces; 40using OpenSim.Region.Framework.Interfaces;