条件SQLite检查约束文本错误

时间:2016-04-10 13:59:04

标签: android image sqlite constraints

我在SQLite中有这段代码:

create table Avisos ( 
idAviso int primary key, 
Tipo text  not null CHECK (Tipo = "Semaforos" or Tipo = "Senalizacion" or Tipo = "Calzada"  Tipo = "Parquimetro" Tipo = "Otro"), 
Descripcion text not null, 
Estado text not null check (Estado = "En proceso" or Estado = "Resuelta"), 
Ubicacion text not null, 
Foto blob not null, 
idUsuario int not null, 
Fecha date not null, 
FOREIGN KEY (idUsuario) REFERENCES Usuarios(idUsuario))

我在约束Check中有错误(Tipo =" Semaforos"和......)

我正在搜索,我发现如果我想在SQLite中添加图像,我必须使用&#34; blob&#34;来定义图像,有人知道它是否很好?< / p>

0 个答案:

没有答案