ICommonDB.cs 407 B

123456789101112131415161718
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Data;
  6. namespace Aitex.Core.RT.DBCore
  7. {
  8. public interface ICommonDB
  9. {
  10. void CreateTableIfNotExisted(string table, Dictionary<string, Type> columns, bool addPID, string primaryKey);
  11. void Insert(string sql);
  12. DataSet ExecuteDataset(string cmdText, params object[] p);
  13. }
  14. }