fix bug where generic sqlite table delete wasn't working.

this would have caused dupe links bugs when using the sqlite adaptor
bulletsim
Justin Clark-Casey (justincc) 2011-05-27 22:54:03 +01:00
parent 44d5821c4e
commit 28cd03cda5
1 changed files with 1 additions and 1 deletions

View File

@ -280,7 +280,7 @@ namespace OpenSim.Data.SQLite
string where = String.Join(" and ", terms.ToArray());
string query = String.Format("delete * from {0} where {1}", m_Realm, where);
string query = String.Format("delete from {0} where {1}", m_Realm, where);
cmd.CommandText = query;