Raghav
Raghav

Reputation: 93

Insert and show data SQL server 2008 to Blackberry native app

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

Answers (1)

Maksym Gontar
Maksym Gontar

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):

  1. for list of records, where we can use ListField UI control
  2. for detail view, where we can use LabelField UI controls
  3. for new record creation, with EditField UI controls

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:

J2ME REST Client

How to build and run a J2ME Web service application

Upvotes: 1

Related Questions