can we execute multiple statement like SQL Server store procedure with Android SQLite rawquery
Example:
string statement1 ="create temp table .....";
string statement2 ="insert into temptable select ..... table1"
string statement3="insert into temptable select..... table2"
string statement4="select ...... from temptable";
Cursor cur=SQLiteDatabase db = this.getReadableDatabase().rawQuery(statement1+" "+statement2+" "+statement3+" "+statement4, null);
and is there alternate way to achive this?