using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace SQLite
{
public interface IDBTable
{
///
/// 表名
///
string TableName { get; }
///
/// 表的 Create SQL
///
string DDL { get; }
///
/// 表的 INDEX, 只能有一个
///
string INDEX { get; }
///
/// 时间列 名称
///
string TimeFieldName { get; }
///
/// 创建表
///
void Create();
long FreeID { get; }
long MaxID { get; set; }
///
/// 初始化
///
///
void Init(SQLiteHelper sQLiteHelper);
string GetDeleteSQL(DateTime del_time);
}
}