I am really stuck at this...I am trying to convert Result Set into string and this is my code :
QueryExecution qExec = QueryExecutionFactory.create(s, ds) ;
ResultSet rs = qExec.execSelect() ;
//String x=rs.toString();
String[] arr = null;
while (rs.next()) {
String em = (String)rs.getString(0);
arr = em.split("\n");
for (int i =0; i < arr.length; i++){
subjectoutput.setText(arr[i]);
}
}
and it gives error:
JavaApplication2.java:137: error: incompatible types
while (rs.next()) {
^
required: boolean
found: QuerySolution
JavaApplication2.java:138: error: cannot find symbol
String em = (String)rs.getString(0);
^
symbol: method getString(int)
location: variable rs of type ResultSet
2 errors
my query result is this:
----------------------------
| x
================================================
| <<SEMA-CR-3-4MHV9RJ@bounce.oracle-mail.com>> |
------------------------------------------------