예제 #1
0
파일: NetSize.cs 프로젝트: Leooonard/CGXM
 public bool saveWithoutCheck()
 {
     string sqlCommand = String.Format(@"insert into NetSize (nsWidth,nsHeight,prID) values({0},{1},{2})",
         nsWidth, nsHeight, prID);
     Sql sql = new Sql();
     return sql.insertNetSize(sqlCommand);
 }
예제 #2
0
파일: NetSize.cs 프로젝트: Leooonard/CGXM
 public override bool save()
 {
     if (!isValid(new List<string>() { "nsID"}))
         return false;
     string sqlCommand = String.Format(@"insert into NetSize (nsWidth,nsHeight,prID) values({0},{1},{2})", 
         nsWidth, nsHeight, prID);
     Sql sql = new Sql();
     return sql.insertNetSize(sqlCommand);
 }