create table book_des ( id int, book_des varchar(30), primark key(id), foreign key(id) references book(id) ) 创建好的book_des表中的id选项必须是 book 表的id选项中的一个 ...
分类:
数据库 时间:
2016-05-15 12:29:08
阅读次数:
162
引用的类型主要关注的是该引用如何与GC交互。1.Strong References
java中常见的引用类型:StringBuffer buf = new StringBuffer();这里buf就是一个强引用。如果一个对象在一条强引用链上可达,那么它不适合GC,也不会被回收。2.Weak References
弱引用,是一种较弱的引用,它不会阻止GC回收只被弱引用引用的对象。
当一个对象最强...
分类:
编程语言 时间:
2016-05-13 00:55:56
阅读次数:
253
我们接着上一篇的添加约束的操作讲述。
三添加约束
(3)添加外键约束
ALTER TABLE table_name ADD [CONSTRAINT [symbol]] FOREIGN KEY [index_name] [index_type]
(index_col_name,...) references_definition;
...
分类:
数据库 时间:
2016-05-11 19:55:08
阅读次数:
386
LSP原则,又叫做里氏替换原则(Liskov Substitution Principle),一个比较准确的定义如下: Function's that ues point or references tobase classes must be able to use objects of deri ...
分类:
其他好文 时间:
2016-05-11 01:13:05
阅读次数:
180
1.打开eclipse 2.window-->references-->Maven0-->User Settings:修改User Settings,Browse重新选择新位置D:\gongsi\apache-maven-3.1.0\conf\settings.xml。 当你在eclipse中集成了 ...
分类:
系统相关 时间:
2016-05-08 16:26:37
阅读次数:
253
外键外键:foreign key,(键不在自己表中):如果一张表中有一个字段(非主键)指向另外一张表的主键,那么将该字段称之为外键。增加外键外键可以在创建表时候,或者创建表之后增加。(但是要考虑数据的问题),一张表可以有多个外键。创建表的时候增加外键-- 在所有的表字段之后,使用foreign key(外键字段) references 外部表(主键字段)下面为之前的my_class表(表结构如下图)...
分类:
数据库 时间:
2016-05-06 15:32:43
阅读次数:
326
Mtsql:常用代码 Create table CeShi1 ( Uid varchar(50) primary key, Pwd varchar(50), Name varchar(50) Nation varchar(50), foreign key (Nation) references Na ...
分类:
数据库 时间:
2016-05-05 22:29:17
阅读次数:
264
之前的编程没有遇到过,应该是苹果官方那边又做了新规吧。 不过不要紧,只要根据这个就能解决报错问题。 Set Build Settings -> Apple LLVM 7.1 - Language - Objective C -> Weak References in Manual Retain Re ...
分类:
系统相关 时间:
2016-05-04 19:00:09
阅读次数:
213
Appears OK to me but the error message " Cant find project or library." suggests it could possibly be the references in VBA. In VBA select menu item T ...
分类:
编程语言 时间:
2016-05-03 14:39:34
阅读次数:
288
File Interface A File object in JavaScript references an actual file in the local filesystem. This File object inherits all properties and methods fro ...
分类:
其他好文 时间:
2016-04-27 22:44:43
阅读次数:
416