ID: 15205
Updated by: [EMAIL PROTECTED]
Reported By: [EMAIL PROTECTED]
-Status: Feedback
+Status: No Feedback
Bug Type: COM related
Operating System: WIN2000 SP2 German
PHP Version: 4.1.1
New Comment:
No feedback was provided for this bug for over a month, so it is
being suspended automatically. If you are able to provide the
information that was originally requested, please do so and change
the status of the bug back to "Open".
Previous Comments:
------------------------------------------------------------------------
[2002-01-27 10:24:13] [EMAIL PROTECTED]
could you add '()' to all of your method calls. your script seems very
odd this.
------------------------------------------------------------------------
[2002-01-24 09:19:41] [EMAIL PROTECTED]
<?
$Source="c:\user.smd";
$conn=new COM("ADODB.Connection") or die("Cannot start ADO");
$record=new COM("ADODB.Recordset") or die("Cannot start ADO");
$conn->Provider = "Microsoft.Jet.OLEDB.4.0";
$conn->ConnectionString = "Data Source=$Source";
$conn->Mode=3;
$conn->Open();
$SQL2="select * from FILES where FILE_ID=2";
$record->Open($SQL2,$conn,3);
$record->MoveLast;
$test=$record->Fields("FILE_NAME");
$test->Value="test";
/**
Warning: PropPut() failed: Ausnahmefehler aufgetreten. Source:
ADODB.Field Description: Das Objekt oder der Provider kann den
angeforderten Vorgang nicht ausf�hren. in D:\Linux\neu.php on line 20
**/
$record->Update;
$record->Requery;
$record->Close;
?>
WHY ??
-_Th.Weisbach
------------------------------------------------------------------------
--
Edit this bug report at http://bugs.php.net/?id=15205&edit=1