mirror of
https://github.com/opensim/opensim.git
synced 2026-08-04 16:22:50 +08:00
* Comment out unused access time method in MSSQL
* This should probably be being called in FetchAsset() instead as for all the other databases, but I lack the means to test MSSQL
This commit is contained in:
@@ -212,24 +212,24 @@ namespace OpenSim.Data.MSSQL
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
private void UpdateAccessTime(AssetBase asset)
|
||||
{
|
||||
using (AutoClosingSqlCommand cmd = database.Query("UPDATE assets SET access_time = @access_time WHERE id=@id"))
|
||||
{
|
||||
int now = (int)((System.DateTime.Now.Ticks - TicksToEpoch) / 10000000);
|
||||
cmd.Parameters.AddWithValue("@id", asset.FullID.ToString());
|
||||
cmd.Parameters.AddWithValue("@access_time", now);
|
||||
try
|
||||
{
|
||||
cmd.ExecuteNonQuery();
|
||||
}
|
||||
catch (Exception e)
|
||||
{
|
||||
m_log.Error(e.ToString());
|
||||
}
|
||||
}
|
||||
}
|
||||
// Commented out since currently unused - this probably should be called in FetchAsset()
|
||||
// private void UpdateAccessTime(AssetBase asset)
|
||||
// {
|
||||
// using (AutoClosingSqlCommand cmd = database.Query("UPDATE assets SET access_time = @access_time WHERE id=@id"))
|
||||
// {
|
||||
// int now = (int)((System.DateTime.Now.Ticks - TicksToEpoch) / 10000000);
|
||||
// cmd.Parameters.AddWithValue("@id", asset.FullID.ToString());
|
||||
// cmd.Parameters.AddWithValue("@access_time", now);
|
||||
// try
|
||||
// {
|
||||
// cmd.ExecuteNonQuery();
|
||||
// }
|
||||
// catch (Exception e)
|
||||
// {
|
||||
// m_log.Error(e.ToString());
|
||||
// }
|
||||
// }
|
||||
// }
|
||||
|
||||
/// <summary>
|
||||
/// Check if asset exist in database
|
||||
|
||||
Reference in New Issue
Block a user