How can I create and send a query in Java?

I see lots of instructions on how to do it in javascript, for example:

var query = new google.visualization.Query(url);
query.setQuery('SELECT A,D WHERE D > 100 ORDER BY D');
query.send(handleQueryResponse);

function handleQueryResponse(response) {
  var data = response.getDataTable();
  // ...
}
  
Can I accomplish the same thing in Java using the 
google-visualization-java<http://code.google.com/apis/chart/interactive/docs/dev/dsl_about.html>library?
 

-- 
You received this message because you are subscribed to the Google Groups 
"Google Visualization API" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-visualization-api/-/CuK0QzmWNyMJ.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/google-visualization-api?hl=en.

Reply via email to