当前位置:  开发笔记 > 编程语言 > 正文

为SQLite编写验证层的最佳方法是什么

如何解决《为SQLite编写验证层的最佳方法是什么》经验,为你挑选了1个好方法。

我正在使用SQLite的ADO.net提供程序.我想引导SQLite的一些"功能",比如允许整数字段中的字符串,并允许在varchar(n)类型的字段中使用长于n的字符串.实现这种验证的最佳方法是什么?存储过程?触发?我正在寻找适用于任何数据库而不仅仅是我的数据库模式的通用解决方案.



1> tuinstoel..:

您可以添加列约束.

create table example
( 
  age integer not null check (typeof(age)='integer'),
  name text not null check (length(name) between 1 and 100),
  salary integer check (salary is null or typeof(salary)='integer')
)

推荐阅读
ERIK又
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有