programming-examples/perl/Database/Update record with OLE connection.pl
2019-11-15 12:59:38 +01:00

17 lines
404 B
Perl

#!c:/perl/bin
use Win32::OLE;
use Win32::OLE::Const 'Microsoft ActiveX Data Objects';
$table = "addresstable";
$conn = Win32::OLE->new("ADODB.Connection");
$rs = Win32::OLE->new("ADODB.Recordset");
$conn->Open("address");
$conn->Execute("UPDATE $table SET address='A' WHERE firstname='A'");
print "Content-type: text/html\n\n";
print "Record Updated ...";
$rs->Close;
$conn->Close;