Hi, I'm having difficulty trying to use the com extension in php5.
Here's the asp equivalent of what I'm trying to do.
Set comobj = Server.CreateObject("MyComlib.ComLib")
comobj.FieldValue = "somedata"
myval = comobj.Property("Record")
comobj.Property("Record") = "otherdata"
My php code looks lik
$comobj = &new COM('MyComlib.ComLib'); // Works
$comobj->FieldValue = "somedata"; // Works
$myval = $comobj->Property("Record");// Kind of
Works.throws an exception if the value doesn't exist
$comobj->Property("Record") = "otherdata";
Christian Calloway wrote:
I had a small question concerning how MySQL stores text and longtext fields.
Long story short, I have to store a large amount of "textual" data, and was
wondering if I should compress said data and then store it in the db, or
does MySQL already concern itself with compres
3 matches
Mail list logo