12345678910111213141516171819202122232425262728293031323334 |
- 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";
- }
- }
- }
|