using System; using System.Collections.Generic; using System.Linq; using System.Text; using Aitex.Common.Util; namespace Aitex.Core.RT.DataCollection { public class DefaultDataCollectionCallback : IDataCollectionCallback { public void PostDBFailedEvent() { } public string GetSqlUpdateFile() { return PathManager.GetCfgDir() + "SqlUpdate.sql"; } public string GetDataTablePrefix() { return "Data"; } public string GetDBName() { return "postgres"; } } }