Fix dumb sql mistake in MSSQLGenericTableHandler.Delete()

0.7.1-dev
Justin Clark-Casey (justincc) 2011-05-31 22:42:18 +01:00
parent c616735a6d
commit 7d4b340ed0
1 changed files with 1 additions and 1 deletions

View File

@ -358,7 +358,7 @@ namespace OpenSim.Data.MSSQL
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.Connection = conn;
cmd.CommandText = query;