1 Star 0 Fork 1

Sail/SQLiteHelper.net

forked from wo4fisher/SQLiteHelper.net 
加入 Gitee
与超过 1400万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
SQLiteColumn.cs 1.91 KB
一键复制 编辑 原始数据 按行查看 历史
Adrian Voo 提交于 2018-09-16 23:28 +08:00 . minor update
using System;
using System.Collections.Generic;
using System.Text;
namespace System.Data.SQLite
{
public class SQLiteColumn
{
public string ColumnName = "";
public bool PrimaryKey = false;
public ColType ColDataType = ColType.Text;
public bool AutoIncrement = false;
public bool NotNull = false;
public string DefaultValue = "";
public SQLiteColumn()
{ }
public SQLiteColumn(string colName)
{
ColumnName = colName;
PrimaryKey = false;
ColDataType = ColType.Text;
AutoIncrement = false;
}
public SQLiteColumn(string colName, ColType colDataType)
{
ColumnName = colName;
PrimaryKey = false;
ColDataType = colDataType;
AutoIncrement = false;
}
public SQLiteColumn(string colName, bool autoIncrement)
{
ColumnName = colName;
if (autoIncrement)
{
PrimaryKey = true;
ColDataType = ColType.Integer;
AutoIncrement = true;
}
else
{
PrimaryKey = false;
ColDataType = ColType.Text;
AutoIncrement = false;
}
}
public SQLiteColumn(string colName, ColType colDataType, bool primaryKey, bool autoIncrement, bool notNull, string defaultValue)
{
ColumnName = colName;
if (autoIncrement)
{
PrimaryKey = true;
ColDataType = ColType.Integer;
AutoIncrement = true;
}
else
{
PrimaryKey = primaryKey;
ColDataType = colDataType;
AutoIncrement = false;
NotNull = notNull;
DefaultValue = defaultValue;
}
}
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/sail87/SQLiteHelper.net.git
git@gitee.com:sail87/SQLiteHelper.net.git
sail87
SQLiteHelper.net
SQLiteHelper.net
master

搜索帮助