Hi ,

 I have found one sample query for converting database table to XML schema 
in SQL. But i feel tedious in case of SQLITE ,  

     The SQL query is ,
                           
                   SELECT e.EmployeeID, c.FirstName, c.MiddleName, c.
LastName

           FROM HumanResources.Employee e INNER JOIN Person.Contact c

           ON c.ContactID = e.ContactID

           WHERE c.FirstName = 'Rob'

           FOR XML RAW;



Here i need equivalent query for above SQL statement in SQLITE android.


Thanks in Advance. 


-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
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/android-developers?hl=en

Reply via email to