We are using the xmla driver to connect to SSAS 2008 and would like to use
prepared statements with parameters. This doesn't seem possible with the
current olap4j implementation, as noted in XmlaOlap4jPreparedStatement:
private List<Parameter> getParameters() {
// XMLA statements do not have parameters yet
return Collections.emptyList();
}
However, Microsoft now seems to support parameters within xmla statements:
I wanted to see if this is something you guys plan on adding. Olap4j seems
like a good fit if we could just leverage prepared statements and parameters.
Or maybe there is a better way to accomplish what we want?
We are using the xmla driver to connect to SSAS 2008 and would like to use
prepared statements with parameters. This doesn't seem possible with the
current olap4j implementation, as noted in XmlaOlap4jPreparedStatement:
However, Microsoft now seems to support parameters within xmla statements:
http://msdn.microsoft.com/en-
us/library/ms145518.aspx
I wanted to see if this is something you guys plan on adding. Olap4j seems
like a good fit if we could just leverage prepared statements and parameters.
Or maybe there is a better way to accomplish what we want?
Here is an example of xmla with parameters:
Thanks,
Brantley
Thanks for the suggestion. I created a feature request.
https://sourceforge.net/tracker/?func=detail&aid=3044543&group_id=168953&atid
=848537
We need it too..