BlackBerry Applications utilizing Microsoft Visual Studio and Database Taking care of

0
0
2389 days ago, 814 views
PowerPoint PPT Presentation
This module empowers engineers who are knowledgeable about the .NET structure to amplify their applications remotely utilizing BlackBerry Mobile Data System (MDS) Overview ...

Presentation Transcript

Slide 1

BlackBerry Applications utilizing Microsoft Visual Studio and Database Handling

Slide 2

Extending Microsoft Visual Studio Environment with an end goal to bolster famous advancement situations, RIM has presented the BlackBerry Plug-in for Microsoft Visual Studio This module empowers engineers who are knowledgeable about the .NET structure to expand their applications remotely utilizing BlackBerry Mobile Data System (MDS)

Slide 3

Overview Using the BlackBerry Plug-in for Microsoft Visual Studio, one can create rich-customer BlackBerry MDS runtime applications One can likewise outline and test BlackBerry MDS Runtime applications utilizing an arrangement of predefined controls, strategies, and classes Easy to fabricate Drag and drop

Slide 4

BlackBerry Plug-in for Microsoft Visual Studio Features Some of the fundamental elements include: Visual Graphical User Interface (GUI) Code era Testing and troubleshooting Support for Web administrations ASP.NET application bolster GPS bolster

Slide 5

BlackBerry Plug-in for Microsoft Visual Studio Features (kept) Using the module, one has entry to numerous BlackBerry test systems One additionally has entry to a wide assortment of BlackBerry controls

Slide 6

BlackBerry Plug-in for Microsoft Visual Studio Features (proceeded with) Developers can compose their code in the .NET structure (i.e. C#, or VB.NET) Event taking care of and application rationale is composed in JavaScript

Slide 7

BlackBerry Toolbox The tool compartment permits you to Connect to a BlackBerry gadget Launch test program Publish an application

Slide 8

Creating Mobile Web Applications Using BlackBerry Plug-in (1) Create another Web website utilizing Microsoft Visual Studio Select the format "ASP.NET Web Site" and characterize the area of the Web webpage

Slide 9

Creating Mobile Web Applications utilizing BlackBerry Plug-as a part of (2) Create a basic Web page in XHTML

Slide 10

Creating Mobile Web Applications utilizing BlackBerry Plug-as a part of (3) Right tap on the filename in the arrangement wayfarer Select "Peruse With… " Select "BlackBerry Browser"

Slide 11

Creating Mobile Web Applications utilizing BlackBerry Plug-as a part of (4) After clicking "Program" catch, the BlackBerry MDS Development Server test system begins A symbol shows up in the desktop assignment bar A "Begin Debugging" window shows up

Slide 12

Creating Mobile Web Applications utilizing BlackBerry Plug-as a part of (4) The BlackBerry test system begins, propelling the Web page in the test system's program and showing the outcomes Advantage the module consequently dispatches the MDS Development Server and BlackBerry Device Simulator

Slide 13

Creating Mobile Web Applications utilizing BlackBerry Plug-as a part of (5) You can control the status of the MDS Development Server test system by right tapping on the symbol on the errand bar You can likewise indicate propelled settings, for example, port data and intermediary association data utilizing the " Settings " alternative

Slide 14

Database-Driven Mobile Web Applications Databases are a route for overseeing and conveying data over the Web In an average Web application, a GUI controls the front-end of the application and the database are utilized to deal with the back-end conveyance of data

Slide 15

What is a database? Database: An accumulation of realities that are deliberately sorted out [Ashenfelter, 1999] The most widely recognized kind of databases is the social database Relational databases permit the connecting between tables a table can "relate" to different tables

Slide 16

Database Components Tables Organized database components into sections (identifiers) and lines (values) Queries Tools that are utilized to include, change, or erase data from a database Forms UI for database applications (got to specifically) Reports Printable archives for gathering of records

Slide 17

Database Components Example from Microsoft Access Table Queries

Slide 18

Database Tables Database tables are composed into Columns (fields) typically contain the identifiers (can be interesting) Rows (records) typically contain estimations of information things Field (identifier) Columns Rows esteem

Slide 19

Primary Keys Databases can guarantee that qualities are exceptional Attempting to enter a copy returns a mistake One can allot a segment an essential key Primary Keys: estimations of at least two records in a field can not be the same used to connection tables with each other

Slide 20

Database Relationships Databases can contain various Tables can identify with each other School_ID is utilized to interface the two tables Field name Relationship Primary key

Slide 21

Database Envorinment Database Management Systems (DBMS) is a product that is in charge of characterizing, making, and keeping up databases Can relegate parts for clients to get to databases Examples: Microsoft Access, Oracle, SQL Server, and so on

Slide 22

.NET Environment Microsoft Windows-based working frameworks give the Open Database Connectivity (ODBC) ODBC goes about as an interpreter between different database positions and an all inclusive database dialect called Structure Query Language (SQL)

Slide 23

Structure Query Language (SQL) SQL is an industry standard Used to get to databases It is made on English dialect proclamations that determine a question to be executed Example: SELECT * From tableName

Slide 24

ASP.NET Designed by Microsoft that go for changing the way organizations create programs Unlike numerous other scripting innovations, ASP.NET is an undeniable programming dialect that is upheld by the .NET Framework

Slide 25

ASP.NET (proceeded with) One can build up an ASP.NET application that is made out of a blend of dialects Visual Basic.NET (VB.NET), C-Sharp (C#) or JavaScript Using ASP.NE, one has a more prominent choice of programming dialects

Slide 26

Elements of ASP.NET Page New labels in the shape No frame activity If you don't indicate an activity, the shape backpedals to itself (postback shape) Runat: by determining server, you educate ASP.NET to monitor this frame on the server (without it, it goes about as would be expected HTML)

Slide 27

Code Blocks Code Declaration Block <script></script>: delimits a segment of the page that the program will prepare powerfully The strategy for isolating HTML from ASP.NET is accomplished through Server Controls

Slide 28

Server Controls case <Script language="VB" runat="server"> Sub Page_Load() Message.Text="ASP.NET Code line" End Sub </script> <html> <head> <Title>Server Controls example</Title> <Body> First HTML Line<br/> <asp:label id=Message runat="server"/> <br/> Second HTML Line<br/> </body> </html> This marker is known as server control. The id trait of the server control relates with the line of code in the <script> square which we determine the content to show.

Slide 29

asp:label Example The ID credit is utilized to particularly distinguish the <asp:label> control one can allude to it in the ASP.NET code The runat="server" ascribe advises the server to prepare the control and produce HTML code to be sent to the customer

Slide 30

asp:DropDownList Example

Slide 31

asp: DropDownList Example (proceeded)

Slide 32

BlackBerry Database Example Objective: Select a client name from a drop down menu and show client data Create a Microsoft Access (mdb) database Customers.mdb One table: CustomerInfo Four Fields: Name, Telephone, Email, Country

Slide 33

BlackBerry Database Example (proceeded with) Place the database document "Customers.mdb" into the "App_Data" organizer of Web webpage Fill in a few records into the database

Slide 34

BlackBerry Database Example (proceeded) In Server Explorer , double tap on Tables and right tap on CustomerInfo , then select "Show Table Data"

Slide 35

BlackBerry Database Example (proceeded) Edit Default.aspx to Select the Name field Display Name records in a drop down menu Create DropDownList control Create Label control

Slide 36

BlackBerry Database Example (proceeded with) Connect to Microsoft Access database ODBC Driver Database File SQL

Slide 37

BlackBerry Database Example (proceeded with) Read the information from the database into a protest called DataReader Locally stores database records in a Web page

Slide 38

BlackBerry Database Example (proceeded) For every record, send the information to be included as an ASP List Item Text Value Column Name

Slide 39

BlackBerry Database Example (proceeded with) Bind the information to the DropDownList control DataBind is an inherent part that ties all information expressions to any ASP.NET server control

Slide 40

BlackBerry Database Example (proceeded with) The DropDownList populates the ListItem controls specifically from the database The bigger the database, the additional time it would take to stack the DropDownList Without the DataBind() technique, the information would not be stacked Data restricting may debase your versatile Web application, contingent upon the way of the calls and the measure of information

SPONSORS