aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Data/SQLite/SQLiteEstateData.cs
diff options
context:
space:
mode:
authorDiva Canto2010-07-08 16:21:01 -0700
committerDiva Canto2010-07-08 16:21:01 -0700
commitfe60b6783d18cb38f07b474aed59b3ae8c57c35b (patch)
treebe6e62b5fba5fc42401561d2a1b23f446f55cb5d /OpenSim/Data/SQLite/SQLiteEstateData.cs
parentThese 2 files want to be committed. (diff)
downloadopensim-SC_OLD-fe60b6783d18cb38f07b474aed59b3ae8c57c35b.zip
opensim-SC_OLD-fe60b6783d18cb38f07b474aed59b3ae8c57c35b.tar.gz
opensim-SC_OLD-fe60b6783d18cb38f07b474aed59b3ae8c57c35b.tar.bz2
opensim-SC_OLD-fe60b6783d18cb38f07b474aed59b3ae8c57c35b.tar.xz
Hopefully fixes mantis #4852
Diffstat (limited to '')
-rw-r--r--OpenSim/Data/SQLite/SQLiteEstateData.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Data/SQLite/SQLiteEstateData.cs b/OpenSim/Data/SQLite/SQLiteEstateData.cs
index 9dd4a2e..fcf041e 100644
--- a/OpenSim/Data/SQLite/SQLiteEstateData.cs
+++ b/OpenSim/Data/SQLite/SQLiteEstateData.cs
@@ -328,7 +328,7 @@ namespace OpenSim.Data.SQLite
328 328
329 public EstateSettings LoadEstateSettings(int estateID) 329 public EstateSettings LoadEstateSettings(int estateID)
330 { 330 {
331 string sql = "select estate_settings."+String.Join(",estate_settings.", FieldList)+" from estate_settings where estate_settings.EstateID :EstateID"; 331 string sql = "select estate_settings."+String.Join(",estate_settings.", FieldList)+" from estate_settings where estate_settings.EstateID = :EstateID";
332 332
333 SqliteCommand cmd = (SqliteCommand)m_connection.CreateCommand(); 333 SqliteCommand cmd = (SqliteCommand)m_connection.CreateCommand();
334 334
@@ -342,7 +342,7 @@ namespace OpenSim.Data.SQLite
342 { 342 {
343 List<int> result = new List<int>(); 343 List<int> result = new List<int>();
344 344
345 string sql = "select EstateID from estate_settings where estate_settings.EstateName :EstateName"; 345 string sql = "select EstateID from estate_settings where estate_settings.EstateName = :EstateName";
346 346
347 SqliteCommand cmd = (SqliteCommand)m_connection.CreateCommand(); 347 SqliteCommand cmd = (SqliteCommand)m_connection.CreateCommand();
348 348