diff options
author | Justin Clark-Casey (justincc) | 2011-05-27 22:54:03 +0100 |
---|---|---|
committer | Justin Clark-Casey (justincc) | 2011-05-27 22:54:03 +0100 |
commit | c475ee1267279814c063e3e29f110e2d06cfd263 (patch) | |
tree | 0294557b376bed51d9006abe52efc6a692a7e0cd | |
parent | switch to 0.7.1.1 release version info (diff) | |
download | opensim-SC-0.7.1.1-release.zip opensim-SC-0.7.1.1-release.tar.gz opensim-SC-0.7.1.1-release.tar.bz2 opensim-SC-0.7.1.1-release.tar.xz |
fix bug where generic sqlite table delete wasn't working.0.7.1.1-release
this would have caused dupe links bugs when using the sqlite adaptor
-rw-r--r-- | OpenSim/Data/SQLite/SQLiteGenericTableHandler.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Data/SQLite/SQLiteGenericTableHandler.cs b/OpenSim/Data/SQLite/SQLiteGenericTableHandler.cs index 3fb2d3f..0d7ae1f 100644 --- a/OpenSim/Data/SQLite/SQLiteGenericTableHandler.cs +++ b/OpenSim/Data/SQLite/SQLiteGenericTableHandler.cs | |||
@@ -280,7 +280,7 @@ namespace OpenSim.Data.SQLite | |||
280 | 280 | ||
281 | string where = String.Join(" and ", terms.ToArray()); | 281 | string where = String.Join(" and ", terms.ToArray()); |
282 | 282 | ||
283 | string query = String.Format("delete * from {0} where {1}", m_Realm, where); | 283 | string query = String.Format("delete from {0} where {1}", m_Realm, where); |
284 | 284 | ||
285 | cmd.CommandText = query; | 285 | cmd.CommandText = query; |
286 | 286 | ||