int run ; SqlCommand command = new SqlCommand(); command.CommandText = "select max(id) from receives"; SqlDataReader read = command.ExecuteReader(); while( read.Read()) { run = Convert.ToInt32(command.ExecuteReader()); } read.Close();
sql="SELECT MAX(id) AS MAXID FROM [table]" con.open cm = new sqlcommand(sql,con.cn) rs = cm.executereader rs.read if rs("MAXID") is DBNULL.Value then 'ถ้าไม่พบค่าใดๆ masbox("ไม่พบค่าครับ") else run=rs("MAXID") end if con.close
SqlCommand command = new SqlCommand(); command.CommandText = "select max(id) from receives"; int maxId = Convert.ToInt32(command.ExecuteScalar());
string connString = @"Data Source=Sever;Initial Catalog=DB;User ID=sa;Password=1234"; SqlConnection conn = new SqlConnection(connString); conn.Open(); SqlCommand cmd = new SqlCommand("select max(id) from receives", conn); int maxId = Convert.ToInt32(cmd.ExecuteScalar());
เพื่อความปลอดภัยของเว็บบอร์ด ไม่อนุญาติให้แทรก แท็ก [img]....[/img] โดยการอัพโหลดไฟล์รูปจากที่อื่น เช่นเว็บไซต์ ฟรีอัพโหลดต่าง ๆ อัพโหลดแทรกรูปภาพ ให้ใช้บริการอัพโหลดไฟล์ของไทยครีเอท และตัดรูปภาพให้พอดีกับสกรีน เพื่อความโหลดเร็วและไฟล์ไม่ถูกลบทิ้ง