I am using an Insert command in my asp code that Inserts a rows in my
database.
After the Insert command i create a recordset and ask for all the rows in
the table that i aplied the insert command
Some times the rows i get are correct but sometimes the database is not
updated by the time the recordset is opened.
Is there any way to wait until the table is updated with the new rows and
then open the
recordset?
<%
Dim Cmd_insord
set Cmd_insord = Server.CreateOb ject("ADODB.Com mand")
Cmd_insord.Acti veConnection = mystring
Cmd_insord.Comm andText = "INSERT INTO PP3 (order_status) VALUES (0) "
Cmd_insord.Comm andType = 1
Cmd_insord.Comm andTimeout = 0
Cmd_insord.Prep ared = true
Cmd_insord.Exec ute() 'here i execute the insert command
%>
<%
Dim RS_ORDER
Set RS_ORDER = Server.CreateOb ject("ADODB.Rec ordset")
RS_ORDER.Active Connection = MM_connDUgaller y_STRING
RS_ORDER.Source = "SELECT * FROM PP3 WHERE order_status=0"
RS_ORDER.Cursor Type = 0
RS_ORDER.Cursor Location = 2
RS_ORDER.LockTy pe = 1
RS_ORDER.Open() ' when the program reaches here the PP3 table may not
allready contain the new added records
%>
database.
After the Insert command i create a recordset and ask for all the rows in
the table that i aplied the insert command
Some times the rows i get are correct but sometimes the database is not
updated by the time the recordset is opened.
Is there any way to wait until the table is updated with the new rows and
then open the
recordset?
<%
Dim Cmd_insord
set Cmd_insord = Server.CreateOb ject("ADODB.Com mand")
Cmd_insord.Acti veConnection = mystring
Cmd_insord.Comm andText = "INSERT INTO PP3 (order_status) VALUES (0) "
Cmd_insord.Comm andType = 1
Cmd_insord.Comm andTimeout = 0
Cmd_insord.Prep ared = true
Cmd_insord.Exec ute() 'here i execute the insert command
%>
<%
Dim RS_ORDER
Set RS_ORDER = Server.CreateOb ject("ADODB.Rec ordset")
RS_ORDER.Active Connection = MM_connDUgaller y_STRING
RS_ORDER.Source = "SELECT * FROM PP3 WHERE order_status=0"
RS_ORDER.Cursor Type = 0
RS_ORDER.Cursor Location = 2
RS_ORDER.LockTy pe = 1
RS_ORDER.Open() ' when the program reaches here the PP3 table may not
allready contain the new added records
%>
Comment