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; }
///
/// 创建表
///
void Create();
long FreeID { get; set; }
///
/// 初始化
///
///
void Init(SQLiteHelper sQLiteHelper);
}
}