mirror of
https://github.com/opensim/opensim.git
synced 2026-08-04 16:22:50 +08:00
a few fixes and cosmetics on some DB code
This commit is contained in:
@@ -406,7 +406,7 @@ namespace OpenSim.Data.MySQL
|
||||
HashSet<UUID> exists = new HashSet<UUID>();
|
||||
|
||||
string ids = "'" + string.Join("','", uuids) + "'";
|
||||
string sql = string.Format("SELECT ID FROM assets WHERE ID IN ({0})", ids);
|
||||
string sql = $"SELECT ID FROM XAssetsMeta WHERE ID IN ({ids})";
|
||||
|
||||
using (MySqlConnection dbcon = new MySqlConnection(m_connectionString))
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user