示例#1
0
文件: bug.php 项目: nhandler/whube
 function bug()
 {
     dbobj::dbobj("bugs", "bID");
     // SQL table `bugs', PK `bID'
     // this just calls the super-class's constructor
     // this tells the dbobj sutff to use the the
     // `bugs' table, with a primary key of `bID'.
 }
示例#2
0
文件: user.php 项目: pedro3005/whube
 function user()
 {
     dbobj::dbobj("users", "uID");
 }
示例#3
0
 function rights()
 {
     dbobj::dbobj("user_rights", "userID");
 }
示例#4
0
文件: bug.php 项目: saji89/whube
 function bug()
 {
     dbobj::dbobj("bugs", "bID");
 }
示例#5
0
 function project()
 {
     dbobj::dbobj("projects", "pID");
 }
示例#6
0
文件: register.php 项目: saji89/whube
 function register()
 {
     dbobj::dbobj("users", "uID");
 }
示例#7
0
 function bug_comment()
 {
     dbobj::dbobj("bug_comments", "cID");
     // SQL table `bug_comments', PK `cID'
 }