Reputation: 93
i want to ask about development in blackberry. I have background in .Net. If i want to develop an native application in BB to do data insert operations in Ms.SQL server 2008 database from blackberry. what should i learn and what should i do ? thank you for your advice.
Any sample on this ?
--Raghav
Upvotes: 1
Views: 404
Reputation: 22775
First of all, see short introduction to Blackberry UI structure.
For described task we may create UiApplication.
Then, we should have 3 kind of screens (we can use MainScreen class):
Also, you can use ButtonField UI controls and MenuItem menu actions
On Blackberry we can use REST or SOAP web services to transfer data on server side
On server side we can use connection to SQL database to complete CRUD actions
See also:
How to build and run a J2ME Web service application
Upvotes: 1