1.建立student表
表名:t_student rowid:st_rowid
屬性:stcode,stname,st***dr,stdob
st***dr為性別指向,指向乙個ct***性別表
class
user.student
extends %persistent [ sqlrowidname = st_rowid, sqltablename = t_student, storagestrategy = studentstorage ]
2.建立course表
class
user.course
extends %persistent [ sqlrowidname = c_rowid, sqltablename = t_course, storagestrategy = coursestorage ]
3.學生選課表
注意:rowid用表名.rowid
4.查詢某個學生的選課情況
class
web.stucourse
extends %persistent
}
Unix 父子程序以及建立子程序
unix系統中程序存在父子關係,父程序擁有多個子程序,子程序只能有乙個父程序。pid為0的程序為排程程序,也是根程序。系統中所有的程序構成了乙個以排程程序為根的程序樹。pid為1的程序是init,init程序負責系統的初始化,同時也負責 孤兒程序,稱為孤兒院程序。當父程序通過fork建立子程序,會複...
php檔案建立相關操作
ps 本人親測,阿里雲2核4g5m的伺服器價效比很高,新使用者一塊多一天,老使用者三塊多一天,最高可以買三年,感興趣的可以戳一下 阿里雲折扣伺服器 1 is dir file 檢查指定的檔案是否是目錄 2 umask 0 設定許可權為0777 注釋 linux中的 umask 函式主要用於 在建立新...
常用位操作以及相關原理
運算 1 1 1,其他都為0 有0即為0 運算 0 0 0 其他都為1 有1即為1 運算 0 0 0,1 1 0 相同數字 為0,不同數字 為1 運算 1001 0110 將所有位取反,也叫取反運算 1.判斷給定數字的奇偶性 if x 1 1 x is 奇 else x is 偶判斷乙個數是否奇偶,...