?? wdbase.mco
字號:
/****************************************************************
* *
* Copyright (c) 2001-2007 McObject LLC. All Right Reserved. *
* *
****************************************************************/
// This sample demonstrates usage of unicodes in a database
#define uint4 unsigned<4>
declare database wddb;
class Record
{
uint4 iNumber;
nchar<8> ncCode;
nstring nsName;
nchar<20> ncDepartment;
nstring nsJob;
unique tree <iNumber, ncCode> I_Index; /* unique complex index */
tree <nsName> I_Name;
tree <ncDepartment> I_Department;
tree <iNumber> I_Order;
};
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -