Exemplo n.º 1
0
 public bool Addcolumn(Hashtable userInfo)
 {
     Database db = new Database();
     if (db.Insert("[column]", userInfo))
     {
         return true;
     }
     return false;
 }
Exemplo n.º 2
0
 public bool Add(Hashtable userInfo)
 {
     Database db = new Database();
     if (db.Insert("[author]", userInfo))
     {
         return true;
     }
     return false;
 }
Exemplo n.º 3
0
 public void AsignExp(Hashtable ht)
 {
     Database db = new Database();
     db.Insert("[assess]", ht);
 }
Exemplo n.º 4
0
 public void Adduser(Hashtable userInfo)
 {
     Database db = new Database();
     db.Insert("[editor]", userInfo);
 }
Exemplo n.º 5
0
 public void Add(Hashtable ht)
 {
     Database db = new Database();
     db.Insert("[board]", ht);
 }
Exemplo n.º 6
0
 //添加稿件信息
 public void Add(Hashtable Document)
 {
     Database db = new Database();
     db.Insert("[document]", Document);
 }
Exemplo n.º 7
0
 //发送消息
 public bool NewMesg(Hashtable msg)
 {
     Database db = new Database();
     if (db.Insert("[message]", msg))
     {
         return true;
     }
     return false;
 }
Exemplo n.º 8
0
 public void Add(Hashtable file)
 {
     Database db = new Database();
     db.Insert("[attach]", file);
 }