I think Scott Moss wrote:
[Charset iso-8859-1 unsupported, filtering to ASCII...]
> I am unable to get the QueryResult returned by runQueryStar() in Java to
> recognise column headings in a Userfunction.
The argument to the getXxx() methods isn't a slot name; it's a
variable name. Remember that a query result can contain multiple
facts, so just specifying a slot name would be potentially
ambiguous. Write your query like this:
(defquery number-of-product-attributes-demanded
(number-desired-attributes (number ?number)))
Note that ?number is bound to a slot, but it's not declared with a
"declare variables" declaration. This way it matches the contents of
the slot, but isn't something you have to pass in as a parameter. If
you make this small change to your query, then your code will work,
because now there *is* a variable named "number".
---------------------------------------------------------
Ernest Friedman-Hill
Advanced Software Research Phone: (925) 294-2154
Sandia National Labs FAX: (925) 294-2234
PO Box 969, MS 9012 [EMAIL PROTECTED]
Livermore, CA 94550 http://herzberg.ca.sandia.gov
--------------------------------------------------------------------
To unsubscribe, send the words 'unsubscribe jess-users [EMAIL PROTECTED]'
in the BODY of a message to [EMAIL PROTECTED], NOT to the list
(use your own address!) List problems? Notify [EMAIL PROTECTED]
--------------------------------------------------------------------