安装libsodium-1.0.1执行./autogen.sh时候,报如下错误:automake--foreign--copy--add-missing-Woverridesrc/common/compress/Makefile.am:9:Libtoollibraryusedbut`LIBTOOL‘isundefinedsrc/common/compress/Makefile.am:9:Theusualwaytodefine`LIBTOOL‘istoadd`AC_PROG_LIBTO..
分类:
其他好文 时间:
2016-10-21 16:50:59
阅读次数:
884
在MySQL中删除一张表或一条数据的时候,出现 [Err] 1451 -Cannot delete or update a parent row: a foreign key constraint fails (...) 这是因为MySQL中设置了foreign key关联,造成无法更新或删除数据。 ...
分类:
数据库 时间:
2016-10-17 13:33:10
阅读次数:
182
创建表 primary key 主键not null 非空foreign key(Nation) references Nation(Code) 外键auto_increment 自增长 注意:所有符号必须是英文状态下的 每个表创建完之后加分号 表里面的最后一列写完之后不要加逗号 删除表: 数据的操 ...
分类:
数据库 时间:
2016-10-16 19:03:32
阅读次数:
217
前言 上一章表操作中提到了PRIMARY KEY,UNIQUE KEY,DEFAULT,NUT NULL四种约束。这一章将系统讲一下约束。 概要介绍 约束的作用:保证数据的完整性和一致性; 约束的分类:表级约束和列级约束; 前言中列举的为列级约束,表级约束就是FOREIGN KEY,本章将着重介绍F ...
分类:
其他好文 时间:
2016-10-13 02:49:48
阅读次数:
90
down voteaccepted For a Table: SELECT TABLE_NAME,COLUMN_NAME,CONSTRAINT_NAME, REFERENCED_TABLE_NAME,REFERENCED_COLUMN_NAME FROM INFORMATION_SCHEMA.KEY ...
分类:
其他好文 时间:
2016-10-07 07:45:21
阅读次数:
150
1.环境准备 sudo apt-get install binfmt-support qemu qemu-user-static debootstrap 2.获取debian根文件系统 2.1.cd /opt 2.2.sudo debootstrap --foreign --arch armel w ...
分类:
其他好文 时间:
2016-10-06 07:06:20
阅读次数:
206
引自:http://www.cnblogs.com/dekevin/p/4772235.html SQLServer 中有五种约束, Primary Key 约束、 Foreign Key 约束、 Unique 约束、 Default 约束和 Check 约束,今天使用SQL Server2008 ...
分类:
数据库 时间:
2016-09-30 09:51:18
阅读次数:
253
Description The Head Elder of the tropical island of Lagrishan has a problem. A burst of foreign aid money was spent on extra roads between villages s ...
分类:
其他好文 时间:
2016-09-28 22:30:11
阅读次数:
184
create table tb_Modules(module_Id int identity(1,1) primary key, (自增)model_Name varchar(50) not null,page_Id int foreign key(page_Id) references tb_Pa ...
分类:
数据库 时间:
2016-09-27 15:14:20
阅读次数:
206
Description You have just moved from Waterloo to a big city. The people here speak an incomprehensible dialect of a foreign language. Fortunately, you ...
分类:
其他好文 时间:
2016-09-23 14:59:15
阅读次数:
130