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