29 using System.Collections;
30 using System.Collections.Generic;
31 using System.Reflection;
32 using OpenSim.Framework;
36 namespace OpenSim.Data.PGSQL
41 : base(connectionString, realm,
"IM_Store")
47 using (NpgsqlCommand cmd =
new NpgsqlCommand())
49 cmd.CommandText = String.Format(
"delete from {0} where \"TMStamp\" < CURRENT_DATE - INTERVAL '2 week'", m_Realm);
PGSQLOfflineIMData(string connectionString, string realm)