Android : Is it possible to send raw SQL to an Azure cloud db from Android?

on Tuesday, July 8, 2014


I'm trying to implement Microsoft Azure's db as my mobile app backend. I'm having a hard time finding comprehensive documentation. I do see that I can query a table this way:



mToDoTable.where().year("due").eq(2013).and().startsWith("text", "PRI0")


What I'd like to do is twofold: 1) create complex joins on tables or 2) send a parameter to a View or stored procedure that implements the complex join on the server side. But I can't figure out how to do either.


There's a .parameter() method, but no indication of how I can catch that on the server to do anything useful.


0 comments:

Post a Comment