| 123456789101112131415161718192021222324252627282930313233 |
- delete from /test/测试缓存库 with version
- /**
- onerror(continue)
- noerrinfo()
- **/
- ;
- drop class if exists /test/测试缓存库/
- ;
- create class if not exists /test/测试缓存库 (
-
- 字符串 varchar,
- 文本 text,
- 文字 text,
- 整数 int,
- 大整数 bigint,
- 双浮点 double,
- 自定义类型 double,
- 浮点 float,
- 布尔 bool,
- 数据块 blob,
-
- indexes(字符串, 文本, 文字, 整数, 大整数, 自定义类型, 浮点, 双浮点, 布尔),
- keys(字符串, 文本)
- ) with core=cacheonly;
- --must have nickname for private field
- alter class /test/测试缓存库 with nickname='测试缓存库' ;
- --taget define in tools, its string
- alter class /test/测试缓存库 add column 目标 int ;
|