|
|
|
|
|
| | |
| |
vbscript active server pages ASP vbscript SQL database informix oracle SQL Server Perl CGI Delphi PHP source code code sample samples program CJWSoft ASPProtect ASPBanner ASPClassifieds
(Advanced)
(Components)
(Database)
(General)
(Vbscript)

|
|
|
|
Subject: |
Re: Updating MS-ACCESS database record |
|
From: |
Stephan Brun |
|
Date: |
12/23/1999 7:53:54 AM |
|
IP: |
194.235.48.10 |
make a sql-statement to get the recordset you want to update, then:
Set rs = Server.CreateObject("ADODB.Recordset")
rs.Open "sql", "dsn", AdOpenKeyset, adLockPessimistic, adCmdTable
rs.Fields("Ereignis")= Request.Form("Ereignis")
rs.Update
rs.Close
Set rs = Nothing
|
Previous Message
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|