fix bug where generic sqlite table delete wasn't working.
this would have caused dupe links bugs when using the sqlite adaptor0.7.1-dev 0.7.1.1-release
parent
6419544948
commit
c475ee1267
|
@ -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