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

this would have caused dupe links bugs when using the sqlite adaptor
0.7.1-dev 0.7.1.1-release
Justin Clark-Casey (justincc) 2011-05-27 22:54:03 +01:00
parent 6419544948
commit c475ee1267
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;