diff options
author | Justin Clark-Casey (justincc) | 2010-09-25 00:00:00 +0100 |
---|---|---|
committer | Justin Clark-Casey (justincc) | 2010-09-25 00:00:00 +0100 |
commit | b366ad5012e6c6be5de2b1449a7b2e94332ef6e3 (patch) | |
tree | e04030a305e9ca92179deb89b641f4968acee6c1 /OpenSim/Data/SQLite/SQLiteUtils.cs | |
parent | If the uuid gatherer fails to find the asset containing gesture metadata, the... (diff) | |
parent | Added delay for llSetPrimitiveParams() and llSetLinkPrimitiveParams() functio... (diff) | |
download | opensim-SC-b366ad5012e6c6be5de2b1449a7b2e94332ef6e3.zip opensim-SC-b366ad5012e6c6be5de2b1449a7b2e94332ef6e3.tar.gz opensim-SC-b366ad5012e6c6be5de2b1449a7b2e94332ef6e3.tar.bz2 opensim-SC-b366ad5012e6c6be5de2b1449a7b2e94332ef6e3.tar.xz |
Merge branch 'master' of ssh://opensimulator.org/var/git/opensim
Diffstat (limited to 'OpenSim/Data/SQLite/SQLiteUtils.cs')
-rw-r--r-- | OpenSim/Data/SQLite/SQLiteUtils.cs | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/OpenSim/Data/SQLite/SQLiteUtils.cs b/OpenSim/Data/SQLite/SQLiteUtils.cs index 07c6b69..ca5861f 100644 --- a/OpenSim/Data/SQLite/SQLiteUtils.cs +++ b/OpenSim/Data/SQLite/SQLiteUtils.cs | |||
@@ -27,7 +27,11 @@ | |||
27 | 27 | ||
28 | using System; | 28 | using System; |
29 | using System.Data; | 29 | using System.Data; |
30 | using Mono.Data.Sqlite; | 30 | #if CSharpSqlite |
31 | using Community.CsharpSqlite.Sqlite; | ||
32 | #else | ||
33 | using Mono.Data.Sqlite; | ||
34 | #endif | ||
31 | 35 | ||
32 | namespace OpenSim.Data.SQLite | 36 | namespace OpenSim.Data.SQLite |
33 | { | 37 | { |