fix bug where generic sqlite table delete wasn't working.
this would have caused dupe links bugs when using the sqlite adaptorbulletsim
parent
44d5821c4e
commit
28cd03cda5
|
@ -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;
|
||||
|
||||
|
|
Loading…
Reference in New Issue