1、ACCESS中ADDNEW后马上可以取到ID:
rs.addnew
Survey_content_new = Survey_content_new&rs("Question_id")&","
而在SQLSERVER不行,要在UPDATE后,才可以取到值
rs.update
Survey_content_new = Survey_content_new&rs("Question_id")&","
rs.close
1、ACCESS中ADDNEW后马上可以取到ID:
rs.addnew
Survey_content_new = Survey_content_new&rs("Question_id")&","
而在SQLSERVER不行,要在UPDATE后,才可以取到值
rs.update
Survey_content_new = Survey_content_new&rs("Question_id")&","
rs.close