hi
we try to migrate our intranet from asp to php the last problem is our
indexserver.
we are using the ado functions of php to make a connection and a query on
the indexserver but the recordset is empty
code:
$objQuery = new COM("ixsso.Query")or die("Cannot start Query");
$objutil = new COM("IXSSO.util")or die("Cannot start Util");
$rsQuery = new COM("ADODB.recordset") or die("Cannot start Recordset");
$objutil->addscopetoquery ($objQuery,"/","deep");
$querystring = "#filename *.pdf";
print "$querystring";
$objQuery->catalog ="catalogname";
$objQuery->query = "$querystring";
$objQuery->SortBy = "filename";
$objQuery->columns = ("filename,docsubject, doctitle, docauthor, doccompany,
doccategory, dockeywords, doccomments, characterization, vpath,");
$rsQuery = $objQuery->CreateRecordset("nonsequential");
___________________________
any ideas how to get the thing work ?
greets flo
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php