MarkyMark35
Programmer
Hi all,
I'm using ASP to open, update and add to a dbf table.
I can open it, update entries but when i add an entry, the application that uses the table doesn't see it.
I do beleive that this is due to the indexs not beeing updated. I am using the following code to accomplish this
Set conn = Server.CreateObject("ADODB.Connection")
conn.Open"Provider=Microsoft.Jet.OLEDB.4.0;Data Source=C:\;Extended Properties=DBASE IV;"
If conn.errors.count = 0 Then
conn.Execute("INSERT INTO COUNTRY VALUES ('AAAA','CANADA','6/11/1998','LAMY')")
response.Write "Succeeded"
conn.Close()
else
response.Write "Failed"
end if
If i use Access to see what's in the table, the entry is there but the clipper app using this doesn't see it.
Is there something special i need to do to get the new entries in the clipper app?
Any help is apreciated
I'm using ASP to open, update and add to a dbf table.
I can open it, update entries but when i add an entry, the application that uses the table doesn't see it.
I do beleive that this is due to the indexs not beeing updated. I am using the following code to accomplish this
Set conn = Server.CreateObject("ADODB.Connection")
conn.Open"Provider=Microsoft.Jet.OLEDB.4.0;Data Source=C:\;Extended Properties=DBASE IV;"
If conn.errors.count = 0 Then
conn.Execute("INSERT INTO COUNTRY VALUES ('AAAA','CANADA','6/11/1998','LAMY')")
response.Write "Succeeded"
conn.Close()
else
response.Write "Failed"
end if
If i use Access to see what's in the table, the entry is there but the clipper app using this doesn't see it.
Is there something special i need to do to get the new entries in the clipper app?
Any help is apreciated