예제 #1
0
파일: Project.cs 프로젝트: Leooonard/CGXM
 public static int GetLastProjectID()
 {
     string sqlCommand = String.Format("select max(pID) from Project");
     Sql sql = new Sql();
     return sql.selectMaxProjectAndMapID(sqlCommand);
 }