SlideShare a Scribd company logo
Objectives
Designing Back End Database
Front End Design using ASP.NET
Writing Event Procedures
Front End-Back End Connectivity
Executing SQL Queries from Front End
Database
Collection of Data
Specific to a Topic
Efficient in Storage and Retrieval
Compactness
Physical Collection of Data on Storage
Media
DBMS
Data Base Management System
Collection of Programs
Functions:
Creation + Management of Database
Creation + Management of Database
Table Structure
Storage of Data
Manipulation of Data
RDBMS
Relational Data Base Management
System
Tabular DBMS
Data Storage in form of Tables
Table-Collection of:
Column: Vertical, Field, Property
Row: Horizontal, Record, Collection of
Field
Table
RollNo StName StDOB StEmail
2009-ag-2533 Ali Ahmad 25/12/1986 aliahmad@gmail.com
2010-ag-2686 Jawad Ahmad 23/05/1987 jawada@yahoo.com
2011-ag-1101 Shahid Nazir 05/06/1987 nazirsh@hotmail.com
2005-ag-4156 Junaid Ali 03/02/1982 j.ali@gmail.com
Fields/Column
Record/Row
Different RDBMS
Microsoft Access
Oracle
SQL Server
Back End
Database
Storage Purpose
Hidden from User
Database has a Name
Tables are Present in Database
Designing Back End
Designing Back End Involves:
Creating Database
Creating Tables
Specifying Columns/Fields
Each Have Its Unique Name
Tools:
SQL Server 2008 Compact Edition
SQL Server 2008 Management Studio
SQL Server Compact Edition
Integrated with Visual Studio 2010
Service Name: SQLEXPRESS
Database Extension: .sdf, .mdf
Suitable for PC Database Applications
.sdf: SQL Server Compact Database File
.mdf: SQL Server Database File
SQL Server 2008
Management Studio
Independent Installation
Default Service Name:
MSSQLSERVER
Database Extension: .mdf
Suitable for Client/Server Applications
.mdf: SQL Server Database File
1
Open Visual Studio 2010
Go to “Data Connections” in “Server
Explorer”
Right Click “Data Connections” and
Select “Add Connection”
“Add Connection” Dialog Box
2
3
4
Go to “Change” Portion of “Add
Connection” Dialog Box
“Change Data Source” Dialog Box
Select “Microsoft SQL Server
Database File” and Press “OK”
“Add Connection” Dialog Box Appears
Type in the Path and Database File
Name and Press “OK”
5
6
1
Go to “Data Connections” in “Server
Explorer” Area
Database.mdf will be present
Double Click Database
Right Click on “Table”
Click “Add New Table”
2
Write Down Table Specification as
Follows:
3
Set The Field “st_regno” as Primary
Key
Right Click on “st_regno” Field and
Select “Set Primary Key”
Press CTRL+S
Type Table Name “student_info” and
Press “OK”
Table will be Created
Front End
User Interface (GUI)
User`s Working Area
Used to Send Commands to DBMS
DBMS Executes Commands on
Database
Data Entry
Data Manipulation
Data/Information Retrieval
Front End Components
Web Forms
Controls
Text Boxes
Labels
Buttons
Check Boxes
Option Buttons etc
Menus
Web Form (1)
Main Content
Page Area
Place to Hold other Contents
Base of Application GUI
Single Web Site may Contain as many
Web Forms as Required
Form (2)
TextBox
Available in Toolbox
Used for Input
Can be:
Single Line
Multi Line
Masked (Password)
Label
Available in Toolbox
Used for Output
Button
Available in Toolbox
Used for Performing Operations
Command Button
Purpose:
Save
Clear
Exit
etc
Check Box
Available in Toolbox
Tick Box
Yes/No Purpose
Multiple Selection From A Group
Option Button
Available in Toolbox
Radio Button
Yes/No Purpose
Single Selection From A Group
Designing Front End
Selection of Controls Required
Placement on Form Control
Changing Properties
Customization of Controls:
Font
Resize
Coloring
Alignment
Common Properties
Name
Text
ForeColor
Font
Enabled
TabIndex
Designing Front End
Event
Happening of Anything
Different Controls have Different
Events
Single Left Click
Double Left Click
Mouse Move
Key Press
Procedure
Piece of Code
Performs Some Operation
Program can have Many Procedures
Procedure and Event Combination
Event Procedure
Writing Procedure for Events
Procedure Executes on the
Occurrence of Specific Event
Writing Event Procedures
Current Scenario:
Save Data Button – Click
Database Connectivity and Query to Save
Data in Database (INSERT Query)
Clear Form Button – Click
Clear Form
Exit Button – Click
Exiting the Application
Connectivity
Importing Namespace
Using SqlConnection Class
ConnectionString
Opening Connection
Checking Connection State
Closing Connections
Namespace
Used to Create Hierarchy
Contain:
Classes
Structures
etc
Importing Namespaces
Importing Namespaces in General
Declaration Section using Keyword
‘Imports’:
System.Data
System.Data.Sql
System.Data.SqlClient
SqlConnection Class
Represents Unique Connection to
Database
Used to Open Connection with
Database
Must be Declared and Initialized
Object Instance Creation
Contain Properties and Methods
Important Members
ConnectionString
State
Open()
Close()
ConnectionString
Important Property
Property Name: ConnectionString
Must be Set Properly to Open
Connection
String Type
String Required to Open A Connection
to SQL Server Database
ConnectionString Parts
Data Source:
Server Name or Service Name
e.g. SQLEXPRESS
AttachDbFilename:
Complete Path of Database File
Integrated Security:
Security Password
TRUE or FALSE
Connect Timeout:
Time to Cancel Query in case of Error
Opening Connection
Open() Method of SqlConnection
Class
Used to Open a Connection to
Database
Connection Must be Open Before
Manipulating Database
Checking Connection State
State Property of SqlConnection
Class
Boolean Property (TRUE or FALSE)
Used to Check Status of Connection
Outcomes:
TRUE (Opened Connection)
FALSE (Closed Connection)
Closing Connection
Close() Method of SqlConnection
Class
Closes Connection to Database
Connection Must be Closed and
Reopened After Performing Database
Manipulation
SQL Queries
SQL—Structured Query Language
Query—Any Question
Executed on Database by DBMS
Sent By API (Application Program
Interface)
SQL Queries
API (Application Program Interface)
DBMS
User(s)
Database
SQL Query Types
DDL:
Database Creation
Table Structure Management
DML:
INSERT (Entering New Data)
UPDATE (Update Existing Data)
DELETE (Deleting Existing Data)
SELECT (Retrieving Data)
Query Execution
Importing Namespace
Using SqlCommand Class
Initializing Command Text and
Registering Connection
Executing INSERT Query
Using SqlDataReader, SqlDataAdapter
Classes
Retrieving and Showing Data
Importing Namespaces
Importing Namespaces in General
Declaration Section using Keyword
‘Imports’:
System.Data
System.Data.Sql
System.Data.SqlClient
SqlCommand Class
Deals with Database
Executes SQL Commands
Specification of SqlConnection
Must be Declared and Initialized
Collection of Properties and Methods
Important Members
SqlCommand(String,Connection) –
Constructor
CommandText
Connection
ExecuteReader()
ExecuteNonQuery()
Cancel()
SqlCommand(String,Connection)
Constructor
SqlCommand(String,Connection)
Instantiates SqlCommand Object with
String CommandText and Connection
SqlConnection
CommandText
Property
Gets or Sets
SQL Command to be Executed by
SqlCommand through SqlConnection
Command can be:
INSERT
UPDATE
DELETE
SELECT
String Type
Connection
Property
Gets or Sets
SQL Connection to Execute SQL
Command
Command can be:
INSERT
UPDATE
DELETE
SELECT
SqlConnection Type
ExecuteReader()
Method
Execute Commands Returning Rows
i.e. SELECT Query
Executes SELECT SqlCommand
Return Rows and Store them in
SqlDataReader Object
ExecuteNonQuery()
Method
Executes Commands Not Retrieving
Rows i.e. INSERT, UPDATE, DELETE
Executes INSERT/UPDATE/DELETE
SqlCommand
Doesn`t Return Anything
Cancel()
Method
Tries to Cancel Execution of SQL
Command Specified by SqlCommand
Object
Recipe….
Open and Test Connection Using
SqlConnection Object
SqlCommand Object Creation
Set CommandText and Connection
Properties
Execute Method ExecuteNonQuery()
Display Message Accordingly
Recipe….
Open and Test Connection Using
SqlConnection Object
SqlCommand Object Creation
Set CommandText and Connection
Properties
Execute Method ExecuteReader() and
Store Data in SqlDataReader Object
Display Data
SqlDataReader Class
Reads Data Rows Directly from SQL
Server Database
Reading Order—Forward
Loops – To Read Multiple Rows
Efficient
Contains Properties and Methods
Must be Open to Read Data
Important Members
FieldCount
HasRows
IsClosed
Close()
FieldCount
Property
Gets Number of Columns in Returned
Row
Type: Integer
HasRows
Property
Boolean Values
Indicates Whether Rows are Returned
in Response to a SELECT Query
Outcomes:
TRUE – Rows Returned
FALSE – No Row Returned
IsClosed
Property
Boolean Values
Indicates Whether SqlDataReader is
Closed or Not
Outcomes:
TRUE – Closed
FALSE -- Open
Close()
Method
Closes SqlDataReader Object
SqlDataReader Object Must be
Closed to Execute Another SQL
Command and to Return Data in the
Same Reader
Thank You

More Related Content

What's hot

WordPress Webinar Training Presentation
WordPress Webinar Training PresentationWordPress Webinar Training Presentation
WordPress Webinar Training Presentation
MayeCreate Design
 
Introduction of microsoft azure
Introduction of microsoft azureIntroduction of microsoft azure
Introduction of microsoft azure
Karthik Perugupalli
 
NetApp C-mode for 7 mode engineers
NetApp C-mode for 7 mode engineersNetApp C-mode for 7 mode engineers
NetApp C-mode for 7 mode engineers
subtitle
 
Filenet test
Filenet testFilenet test
Filenet test
kflana26
 
Office 365 Mail migration strategies
Office 365 Mail migration strategiesOffice 365 Mail migration strategies
Office 365 Mail migration strategies
Fulvio Salanitro
 
Microsoft Azure Training | Azure Training For Beginners | Azure Tutorial For ...
Microsoft Azure Training | Azure Training For Beginners | Azure Tutorial For ...Microsoft Azure Training | Azure Training For Beginners | Azure Tutorial For ...
Microsoft Azure Training | Azure Training For Beginners | Azure Tutorial For ...
Simplilearn
 
Using Java to implement SOAP Web Services: JAX-WS
Using Java to implement SOAP Web Services: JAX-WS�Using Java to implement SOAP Web Services: JAX-WS�
Using Java to implement SOAP Web Services: JAX-WS
Katrien Verbert
 
Office 365: Migrating Your Business to Office 365!
Office 365: Migrating Your Business to Office 365!Office 365: Migrating Your Business to Office 365!
Office 365: Migrating Your Business to Office 365!
Michael Frank
 
Microsoft 365 Security and Compliance
Microsoft 365 Security and ComplianceMicrosoft 365 Security and Compliance
Microsoft 365 Security and Compliance
David J Rosenthal
 
Google Apps for Work
Google Apps for WorkGoogle Apps for Work
Google Apps for Work
TechAhead
 
Building Oracle BIEE (OBIEE) Reports, Dashboards
Building Oracle BIEE (OBIEE) Reports, DashboardsBuilding Oracle BIEE (OBIEE) Reports, Dashboards
Building Oracle BIEE (OBIEE) Reports, Dashboards
iWare Logic Technologies Pvt. Ltd.
 
Securing SharePoint & OneDrive in Office 365
Securing SharePoint & OneDrive in Office 365Securing SharePoint & OneDrive in Office 365
Securing SharePoint & OneDrive in Office 365
Drew Madelung
 
Oracle APEX URLs Untangled & SEOptimized
Oracle APEX URLs Untangled & SEOptimizedOracle APEX URLs Untangled & SEOptimized
Oracle APEX URLs Untangled & SEOptimized
Christian Rokitta
 
Microsoft Viva Product overview #m365toug
Microsoft Viva Product overview #m365tougMicrosoft Viva Product overview #m365toug
Microsoft Viva Product overview #m365toug
Kanwal Khipple
 
Microsoft Purview Information Barriers and Communication Compliance and Micro...
Microsoft Purview Information Barriers and Communication Compliance and Micro...Microsoft Purview Information Barriers and Communication Compliance and Micro...
Microsoft Purview Information Barriers and Communication Compliance and Micro...
Albert Hoitingh
 
Microsoft Azure Overview
Microsoft Azure OverviewMicrosoft Azure Overview
Microsoft Azure Overview
David J Rosenthal
 
AZ-104T00A-ENU-PowerPoint_00.pptx
AZ-104T00A-ENU-PowerPoint_00.pptxAZ-104T00A-ENU-PowerPoint_00.pptx
AZ-104T00A-ENU-PowerPoint_00.pptx
AliChallioui
 
Utilise Google Workspace LW.pptx
Utilise Google Workspace LW.pptxUtilise Google Workspace LW.pptx
Utilise Google Workspace LW.pptx
TimBee1
 
Microsoft Teams
Microsoft TeamsMicrosoft Teams
Microsoft Teams
Jigger Perez
 
Taking OneDrive for Business administration to the next level
Taking OneDrive for Business administration to the next levelTaking OneDrive for Business administration to the next level
Taking OneDrive for Business administration to the next level
Drew Madelung
 

What's hot (20)

WordPress Webinar Training Presentation
WordPress Webinar Training PresentationWordPress Webinar Training Presentation
WordPress Webinar Training Presentation
 
Introduction of microsoft azure
Introduction of microsoft azureIntroduction of microsoft azure
Introduction of microsoft azure
 
NetApp C-mode for 7 mode engineers
NetApp C-mode for 7 mode engineersNetApp C-mode for 7 mode engineers
NetApp C-mode for 7 mode engineers
 
Filenet test
Filenet testFilenet test
Filenet test
 
Office 365 Mail migration strategies
Office 365 Mail migration strategiesOffice 365 Mail migration strategies
Office 365 Mail migration strategies
 
Microsoft Azure Training | Azure Training For Beginners | Azure Tutorial For ...
Microsoft Azure Training | Azure Training For Beginners | Azure Tutorial For ...Microsoft Azure Training | Azure Training For Beginners | Azure Tutorial For ...
Microsoft Azure Training | Azure Training For Beginners | Azure Tutorial For ...
 
Using Java to implement SOAP Web Services: JAX-WS
Using Java to implement SOAP Web Services: JAX-WS�Using Java to implement SOAP Web Services: JAX-WS�
Using Java to implement SOAP Web Services: JAX-WS
 
Office 365: Migrating Your Business to Office 365!
Office 365: Migrating Your Business to Office 365!Office 365: Migrating Your Business to Office 365!
Office 365: Migrating Your Business to Office 365!
 
Microsoft 365 Security and Compliance
Microsoft 365 Security and ComplianceMicrosoft 365 Security and Compliance
Microsoft 365 Security and Compliance
 
Google Apps for Work
Google Apps for WorkGoogle Apps for Work
Google Apps for Work
 
Building Oracle BIEE (OBIEE) Reports, Dashboards
Building Oracle BIEE (OBIEE) Reports, DashboardsBuilding Oracle BIEE (OBIEE) Reports, Dashboards
Building Oracle BIEE (OBIEE) Reports, Dashboards
 
Securing SharePoint & OneDrive in Office 365
Securing SharePoint & OneDrive in Office 365Securing SharePoint & OneDrive in Office 365
Securing SharePoint & OneDrive in Office 365
 
Oracle APEX URLs Untangled & SEOptimized
Oracle APEX URLs Untangled & SEOptimizedOracle APEX URLs Untangled & SEOptimized
Oracle APEX URLs Untangled & SEOptimized
 
Microsoft Viva Product overview #m365toug
Microsoft Viva Product overview #m365tougMicrosoft Viva Product overview #m365toug
Microsoft Viva Product overview #m365toug
 
Microsoft Purview Information Barriers and Communication Compliance and Micro...
Microsoft Purview Information Barriers and Communication Compliance and Micro...Microsoft Purview Information Barriers and Communication Compliance and Micro...
Microsoft Purview Information Barriers and Communication Compliance and Micro...
 
Microsoft Azure Overview
Microsoft Azure OverviewMicrosoft Azure Overview
Microsoft Azure Overview
 
AZ-104T00A-ENU-PowerPoint_00.pptx
AZ-104T00A-ENU-PowerPoint_00.pptxAZ-104T00A-ENU-PowerPoint_00.pptx
AZ-104T00A-ENU-PowerPoint_00.pptx
 
Utilise Google Workspace LW.pptx
Utilise Google Workspace LW.pptxUtilise Google Workspace LW.pptx
Utilise Google Workspace LW.pptx
 
Microsoft Teams
Microsoft TeamsMicrosoft Teams
Microsoft Teams
 
Taking OneDrive for Business administration to the next level
Taking OneDrive for Business administration to the next levelTaking OneDrive for Business administration to the next level
Taking OneDrive for Business administration to the next level
 

Viewers also liked

Database programming in vb net
Database programming in vb netDatabase programming in vb net
Database programming in vb net
Zishan yousaf
 
Database Connection
Database ConnectionDatabase Connection
Database Connection
John Joseph San Juan
 
Data base connectivity and flex grid in vb
Data base connectivity and flex grid in vbData base connectivity and flex grid in vb
Data base connectivity and flex grid in vb
Amandeep Kaur
 
ADO CONTROLS - Database usage
ADO CONTROLS - Database usageADO CONTROLS - Database usage
ADO CONTROLS - Database usage
Muralidharan Radhakrishnan
 
ADO Controls - Database Usage from Exploring MS Visual Basic 6.0 Book
ADO Controls - Database Usage from Exploring MS Visual Basic 6.0 BookADO Controls - Database Usage from Exploring MS Visual Basic 6.0 Book
ADO Controls - Database Usage from Exploring MS Visual Basic 6.0 Book
Muralidharan Radhakrishnan
 
Visual Studio Toolbox - Introduction To Xamarin.Forms
Visual Studio Toolbox - Introduction To Xamarin.FormsVisual Studio Toolbox - Introduction To Xamarin.Forms
Visual Studio Toolbox - Introduction To Xamarin.Forms
James Montemagno
 
Insert, Edit, Delete pada VB 2010 dengan DB Mysql dan Crystal Report
Insert, Edit, Delete pada VB 2010 dengan DB Mysql dan Crystal ReportInsert, Edit, Delete pada VB 2010 dengan DB Mysql dan Crystal Report
Insert, Edit, Delete pada VB 2010 dengan DB Mysql dan Crystal ReportRahmat Taufiq Sigit
 
Why Power Your Home with Solar
Why Power Your Home with SolarWhy Power Your Home with Solar
Why Power Your Home with Solar
richardkane
 
Wordpress developers new york
Wordpress developers new yorkWordpress developers new york
Wordpress developers new york
Bhupendra Rajput
 
Netbeans and Android Appliation
Netbeans and Android AppliationNetbeans and Android Appliation
Netbeans and Android Appliation
Sedthawoot Pitapo
 
Database application and design
Database application and designDatabase application and design
Database application and design
sieedah
 
Sql – Structured Query Language
Sql – Structured Query LanguageSql – Structured Query Language
Sql – Structured Query Language
pandey3045_bit
 
VB6 Using ADO Data Control
VB6 Using ADO Data ControlVB6 Using ADO Data Control
VB6 Using ADO Data Control
Notre Dame of Midsayap College
 
Innovative ICT Based Library Services
Innovative ICT Based Library ServicesInnovative ICT Based Library Services
Innovative ICT Based Library Services
Glob@l Libraries - Bulgaria Program
 
Active x
Active xActive x
Active x
Karthick Suresh
 
Visual C# 2010
Visual C# 2010Visual C# 2010
Visual C# 2010
Ali Mattash
 
Visual basic 6
Visual basic 6Visual basic 6
Visual basic 6
allen cervantes
 
Final project(vb)
Final project(vb)Final project(vb)
Final project(vb)
Mohammad Qureshi
 
MS Access and Database Fundamentals
MS Access and Database FundamentalsMS Access and Database Fundamentals
MS Access and Database Fundamentals
Ananda Gupta
 
Vb.net ide
Vb.net ideVb.net ide
Vb.net ide
Faisal Aziz
 

Viewers also liked (20)

Database programming in vb net
Database programming in vb netDatabase programming in vb net
Database programming in vb net
 
Database Connection
Database ConnectionDatabase Connection
Database Connection
 
Data base connectivity and flex grid in vb
Data base connectivity and flex grid in vbData base connectivity and flex grid in vb
Data base connectivity and flex grid in vb
 
ADO CONTROLS - Database usage
ADO CONTROLS - Database usageADO CONTROLS - Database usage
ADO CONTROLS - Database usage
 
ADO Controls - Database Usage from Exploring MS Visual Basic 6.0 Book
ADO Controls - Database Usage from Exploring MS Visual Basic 6.0 BookADO Controls - Database Usage from Exploring MS Visual Basic 6.0 Book
ADO Controls - Database Usage from Exploring MS Visual Basic 6.0 Book
 
Visual Studio Toolbox - Introduction To Xamarin.Forms
Visual Studio Toolbox - Introduction To Xamarin.FormsVisual Studio Toolbox - Introduction To Xamarin.Forms
Visual Studio Toolbox - Introduction To Xamarin.Forms
 
Insert, Edit, Delete pada VB 2010 dengan DB Mysql dan Crystal Report
Insert, Edit, Delete pada VB 2010 dengan DB Mysql dan Crystal ReportInsert, Edit, Delete pada VB 2010 dengan DB Mysql dan Crystal Report
Insert, Edit, Delete pada VB 2010 dengan DB Mysql dan Crystal Report
 
Why Power Your Home with Solar
Why Power Your Home with SolarWhy Power Your Home with Solar
Why Power Your Home with Solar
 
Wordpress developers new york
Wordpress developers new yorkWordpress developers new york
Wordpress developers new york
 
Netbeans and Android Appliation
Netbeans and Android AppliationNetbeans and Android Appliation
Netbeans and Android Appliation
 
Database application and design
Database application and designDatabase application and design
Database application and design
 
Sql – Structured Query Language
Sql – Structured Query LanguageSql – Structured Query Language
Sql – Structured Query Language
 
VB6 Using ADO Data Control
VB6 Using ADO Data ControlVB6 Using ADO Data Control
VB6 Using ADO Data Control
 
Innovative ICT Based Library Services
Innovative ICT Based Library ServicesInnovative ICT Based Library Services
Innovative ICT Based Library Services
 
Active x
Active xActive x
Active x
 
Visual C# 2010
Visual C# 2010Visual C# 2010
Visual C# 2010
 
Visual basic 6
Visual basic 6Visual basic 6
Visual basic 6
 
Final project(vb)
Final project(vb)Final project(vb)
Final project(vb)
 
MS Access and Database Fundamentals
MS Access and Database FundamentalsMS Access and Database Fundamentals
MS Access and Database Fundamentals
 
Vb.net ide
Vb.net ideVb.net ide
Vb.net ide
 

Similar to Web based database application design using vb.net and sql server

SQL Server 2008 for .NET Developers
SQL Server 2008 for .NET DevelopersSQL Server 2008 for .NET Developers
SQL Server 2008 for .NET Developers
llangit
 
Tech Days09 Sqldev
Tech Days09 SqldevTech Days09 Sqldev
Tech Days09 Sqldev
llangit
 
SQL Server 2008 for Developers
SQL Server 2008 for DevelopersSQL Server 2008 for Developers
SQL Server 2008 for Developers
llangit
 
Sql server basics
Sql server basicsSql server basics
Sql server basics
Dilfaroz Khan
 
Access 2 day course
Access 2 day courseAccess 2 day course
Access 2 day course
scacpa
 
[PHPUGPH] PHP Roadshow - MySQL
[PHPUGPH] PHP Roadshow - MySQL[PHPUGPH] PHP Roadshow - MySQL
[PHPUGPH] PHP Roadshow - MySQL
Cherrie Ann Domingo
 
Sql azure dec_2010 Lynn & Ike
Sql azure dec_2010 Lynn & IkeSql azure dec_2010 Lynn & Ike
Sql azure dec_2010 Lynn & Ike
Ike Ellis
 
SQL Server 2008 for Developers
SQL Server 2008 for DevelopersSQL Server 2008 for Developers
SQL Server 2008 for Developers
ukdpe
 
Ado.net & data persistence frameworks
Ado.net & data persistence frameworksAdo.net & data persistence frameworks
Ado.net & data persistence frameworks
Luis Goldster
 
D.dsgn + dbms
D.dsgn + dbmsD.dsgn + dbms
D.dsgn + dbms
Dori Dorian
 
SAS Online Training Institute in Hyderabad - C-Point
SAS Online Training Institute in Hyderabad - C-PointSAS Online Training Institute in Hyderabad - C-Point
SAS Online Training Institute in Hyderabad - C-Point
cpointss
 
Database fundamentals
Database fundamentalsDatabase fundamentals
Database fundamentals
Then Murugeshwari
 
Cis245 finalreview
Cis245 finalreviewCis245 finalreview
7. SQL.pptx
7. SQL.pptx7. SQL.pptx
7. SQL.pptx
chaitanya149090
 
Ado .net
Ado .netAdo .net
Ado .net
Manish Singh
 
Three tier Architecture of ASP_Net
Three tier Architecture of ASP_NetThree tier Architecture of ASP_Net
Three tier Architecture of ASP_Net
Biswadip Goswami
 
New Engineering Client for Agile PLM
New Engineering Client for Agile PLMNew Engineering Client for Agile PLM
New Engineering Client for Agile PLM
Zero Wait-State
 
Microsoft Database Options
Microsoft Database OptionsMicrosoft Database Options
Microsoft Database Options
David Chou
 
Saying goodbye to SQL Server 2000
Saying goodbye to SQL Server 2000Saying goodbye to SQL Server 2000
Saying goodbye to SQL Server 2000
ukdpe
 
Database driven web pages
Database driven web pagesDatabase driven web pages
Database driven web pages
Information Technology
 

Similar to Web based database application design using vb.net and sql server (20)

SQL Server 2008 for .NET Developers
SQL Server 2008 for .NET DevelopersSQL Server 2008 for .NET Developers
SQL Server 2008 for .NET Developers
 
Tech Days09 Sqldev
Tech Days09 SqldevTech Days09 Sqldev
Tech Days09 Sqldev
 
SQL Server 2008 for Developers
SQL Server 2008 for DevelopersSQL Server 2008 for Developers
SQL Server 2008 for Developers
 
Sql server basics
Sql server basicsSql server basics
Sql server basics
 
Access 2 day course
Access 2 day courseAccess 2 day course
Access 2 day course
 
[PHPUGPH] PHP Roadshow - MySQL
[PHPUGPH] PHP Roadshow - MySQL[PHPUGPH] PHP Roadshow - MySQL
[PHPUGPH] PHP Roadshow - MySQL
 
Sql azure dec_2010 Lynn & Ike
Sql azure dec_2010 Lynn & IkeSql azure dec_2010 Lynn & Ike
Sql azure dec_2010 Lynn & Ike
 
SQL Server 2008 for Developers
SQL Server 2008 for DevelopersSQL Server 2008 for Developers
SQL Server 2008 for Developers
 
Ado.net & data persistence frameworks
Ado.net & data persistence frameworksAdo.net & data persistence frameworks
Ado.net & data persistence frameworks
 
D.dsgn + dbms
D.dsgn + dbmsD.dsgn + dbms
D.dsgn + dbms
 
SAS Online Training Institute in Hyderabad - C-Point
SAS Online Training Institute in Hyderabad - C-PointSAS Online Training Institute in Hyderabad - C-Point
SAS Online Training Institute in Hyderabad - C-Point
 
Database fundamentals
Database fundamentalsDatabase fundamentals
Database fundamentals
 
Cis245 finalreview
Cis245 finalreviewCis245 finalreview
Cis245 finalreview
 
7. SQL.pptx
7. SQL.pptx7. SQL.pptx
7. SQL.pptx
 
Ado .net
Ado .netAdo .net
Ado .net
 
Three tier Architecture of ASP_Net
Three tier Architecture of ASP_NetThree tier Architecture of ASP_Net
Three tier Architecture of ASP_Net
 
New Engineering Client for Agile PLM
New Engineering Client for Agile PLMNew Engineering Client for Agile PLM
New Engineering Client for Agile PLM
 
Microsoft Database Options
Microsoft Database OptionsMicrosoft Database Options
Microsoft Database Options
 
Saying goodbye to SQL Server 2000
Saying goodbye to SQL Server 2000Saying goodbye to SQL Server 2000
Saying goodbye to SQL Server 2000
 
Database driven web pages
Database driven web pagesDatabase driven web pages
Database driven web pages
 

Recently uploaded

GraphSummit Singapore | Neo4j Product Vision & Roadmap - Q2 2024
GraphSummit Singapore | Neo4j Product Vision & Roadmap - Q2 2024GraphSummit Singapore | Neo4j Product Vision & Roadmap - Q2 2024
GraphSummit Singapore | Neo4j Product Vision & Roadmap - Q2 2024
Neo4j
 
20240609 QFM020 Irresponsible AI Reading List May 2024
20240609 QFM020 Irresponsible AI Reading List May 202420240609 QFM020 Irresponsible AI Reading List May 2024
20240609 QFM020 Irresponsible AI Reading List May 2024
Matthew Sinclair
 
Pushing the limits of ePRTC: 100ns holdover for 100 days
Pushing the limits of ePRTC: 100ns holdover for 100 daysPushing the limits of ePRTC: 100ns holdover for 100 days
Pushing the limits of ePRTC: 100ns holdover for 100 days
Adtran
 
Observability Concepts EVERY Developer Should Know -- DeveloperWeek Europe.pdf
Observability Concepts EVERY Developer Should Know -- DeveloperWeek Europe.pdfObservability Concepts EVERY Developer Should Know -- DeveloperWeek Europe.pdf
Observability Concepts EVERY Developer Should Know -- DeveloperWeek Europe.pdf
Paige Cruz
 
Cosa hanno in comune un mattoncino Lego e la backdoor XZ?
Cosa hanno in comune un mattoncino Lego e la backdoor XZ?Cosa hanno in comune un mattoncino Lego e la backdoor XZ?
Cosa hanno in comune un mattoncino Lego e la backdoor XZ?
Speck&Tech
 
Introduction to CHERI technology - Cybersecurity
Introduction to CHERI technology - CybersecurityIntroduction to CHERI technology - Cybersecurity
Introduction to CHERI technology - Cybersecurity
mikeeftimakis1
 
Let's Integrate MuleSoft RPA, COMPOSER, APM with AWS IDP along with Slack
Let's Integrate MuleSoft RPA, COMPOSER, APM with AWS IDP along with SlackLet's Integrate MuleSoft RPA, COMPOSER, APM with AWS IDP along with Slack
Let's Integrate MuleSoft RPA, COMPOSER, APM with AWS IDP along with Slack
shyamraj55
 
Removing Uninteresting Bytes in Software Fuzzing
Removing Uninteresting Bytes in Software FuzzingRemoving Uninteresting Bytes in Software Fuzzing
Removing Uninteresting Bytes in Software Fuzzing
Aftab Hussain
 
Large Language Model (LLM) and it’s Geospatial Applications
Large Language Model (LLM) and it’s Geospatial ApplicationsLarge Language Model (LLM) and it’s Geospatial Applications
Large Language Model (LLM) and it’s Geospatial Applications
Rohit Gautam
 
Alt. GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using ...
Alt. GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using ...Alt. GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using ...
Alt. GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using ...
James Anderson
 
Microsoft - Power Platform_G.Aspiotis.pdf
Microsoft - Power Platform_G.Aspiotis.pdfMicrosoft - Power Platform_G.Aspiotis.pdf
Microsoft - Power Platform_G.Aspiotis.pdf
Uni Systems S.M.S.A.
 
“Building and Scaling AI Applications with the Nx AI Manager,” a Presentation...
“Building and Scaling AI Applications with the Nx AI Manager,” a Presentation...“Building and Scaling AI Applications with the Nx AI Manager,” a Presentation...
“Building and Scaling AI Applications with the Nx AI Manager,” a Presentation...
Edge AI and Vision Alliance
 
Uni Systems Copilot event_05062024_C.Vlachos.pdf
Uni Systems Copilot event_05062024_C.Vlachos.pdfUni Systems Copilot event_05062024_C.Vlachos.pdf
Uni Systems Copilot event_05062024_C.Vlachos.pdf
Uni Systems S.M.S.A.
 
National Security Agency - NSA mobile device best practices
National Security Agency - NSA mobile device best practicesNational Security Agency - NSA mobile device best practices
National Security Agency - NSA mobile device best practices
Quotidiano Piemontese
 
“I’m still / I’m still / Chaining from the Block”
“I’m still / I’m still / Chaining from the Block”“I’m still / I’m still / Chaining from the Block”
“I’m still / I’m still / Chaining from the Block”
Claudio Di Ciccio
 
Full-RAG: A modern architecture for hyper-personalization
Full-RAG: A modern architecture for hyper-personalizationFull-RAG: A modern architecture for hyper-personalization
Full-RAG: A modern architecture for hyper-personalization
Zilliz
 
Artificial Intelligence for XMLDevelopment
Artificial Intelligence for XMLDevelopmentArtificial Intelligence for XMLDevelopment
Artificial Intelligence for XMLDevelopment
Octavian Nadolu
 
PCI PIN Basics Webinar from the Controlcase Team
PCI PIN Basics Webinar from the Controlcase TeamPCI PIN Basics Webinar from the Controlcase Team
PCI PIN Basics Webinar from the Controlcase Team
ControlCase
 
Securing your Kubernetes cluster_ a step-by-step guide to success !
Securing your Kubernetes cluster_ a step-by-step guide to success !Securing your Kubernetes cluster_ a step-by-step guide to success !
Securing your Kubernetes cluster_ a step-by-step guide to success !
KatiaHIMEUR1
 
How to Get CNIC Information System with Paksim Ga.pptx
How to Get CNIC Information System with Paksim Ga.pptxHow to Get CNIC Information System with Paksim Ga.pptx
How to Get CNIC Information System with Paksim Ga.pptx
danishmna97
 

Recently uploaded (20)

GraphSummit Singapore | Neo4j Product Vision & Roadmap - Q2 2024
GraphSummit Singapore | Neo4j Product Vision & Roadmap - Q2 2024GraphSummit Singapore | Neo4j Product Vision & Roadmap - Q2 2024
GraphSummit Singapore | Neo4j Product Vision & Roadmap - Q2 2024
 
20240609 QFM020 Irresponsible AI Reading List May 2024
20240609 QFM020 Irresponsible AI Reading List May 202420240609 QFM020 Irresponsible AI Reading List May 2024
20240609 QFM020 Irresponsible AI Reading List May 2024
 
Pushing the limits of ePRTC: 100ns holdover for 100 days
Pushing the limits of ePRTC: 100ns holdover for 100 daysPushing the limits of ePRTC: 100ns holdover for 100 days
Pushing the limits of ePRTC: 100ns holdover for 100 days
 
Observability Concepts EVERY Developer Should Know -- DeveloperWeek Europe.pdf
Observability Concepts EVERY Developer Should Know -- DeveloperWeek Europe.pdfObservability Concepts EVERY Developer Should Know -- DeveloperWeek Europe.pdf
Observability Concepts EVERY Developer Should Know -- DeveloperWeek Europe.pdf
 
Cosa hanno in comune un mattoncino Lego e la backdoor XZ?
Cosa hanno in comune un mattoncino Lego e la backdoor XZ?Cosa hanno in comune un mattoncino Lego e la backdoor XZ?
Cosa hanno in comune un mattoncino Lego e la backdoor XZ?
 
Introduction to CHERI technology - Cybersecurity
Introduction to CHERI technology - CybersecurityIntroduction to CHERI technology - Cybersecurity
Introduction to CHERI technology - Cybersecurity
 
Let's Integrate MuleSoft RPA, COMPOSER, APM with AWS IDP along with Slack
Let's Integrate MuleSoft RPA, COMPOSER, APM with AWS IDP along with SlackLet's Integrate MuleSoft RPA, COMPOSER, APM with AWS IDP along with Slack
Let's Integrate MuleSoft RPA, COMPOSER, APM with AWS IDP along with Slack
 
Removing Uninteresting Bytes in Software Fuzzing
Removing Uninteresting Bytes in Software FuzzingRemoving Uninteresting Bytes in Software Fuzzing
Removing Uninteresting Bytes in Software Fuzzing
 
Large Language Model (LLM) and it’s Geospatial Applications
Large Language Model (LLM) and it’s Geospatial ApplicationsLarge Language Model (LLM) and it’s Geospatial Applications
Large Language Model (LLM) and it’s Geospatial Applications
 
Alt. GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using ...
Alt. GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using ...Alt. GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using ...
Alt. GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using ...
 
Microsoft - Power Platform_G.Aspiotis.pdf
Microsoft - Power Platform_G.Aspiotis.pdfMicrosoft - Power Platform_G.Aspiotis.pdf
Microsoft - Power Platform_G.Aspiotis.pdf
 
“Building and Scaling AI Applications with the Nx AI Manager,” a Presentation...
“Building and Scaling AI Applications with the Nx AI Manager,” a Presentation...“Building and Scaling AI Applications with the Nx AI Manager,” a Presentation...
“Building and Scaling AI Applications with the Nx AI Manager,” a Presentation...
 
Uni Systems Copilot event_05062024_C.Vlachos.pdf
Uni Systems Copilot event_05062024_C.Vlachos.pdfUni Systems Copilot event_05062024_C.Vlachos.pdf
Uni Systems Copilot event_05062024_C.Vlachos.pdf
 
National Security Agency - NSA mobile device best practices
National Security Agency - NSA mobile device best practicesNational Security Agency - NSA mobile device best practices
National Security Agency - NSA mobile device best practices
 
“I’m still / I’m still / Chaining from the Block”
“I’m still / I’m still / Chaining from the Block”“I’m still / I’m still / Chaining from the Block”
“I’m still / I’m still / Chaining from the Block”
 
Full-RAG: A modern architecture for hyper-personalization
Full-RAG: A modern architecture for hyper-personalizationFull-RAG: A modern architecture for hyper-personalization
Full-RAG: A modern architecture for hyper-personalization
 
Artificial Intelligence for XMLDevelopment
Artificial Intelligence for XMLDevelopmentArtificial Intelligence for XMLDevelopment
Artificial Intelligence for XMLDevelopment
 
PCI PIN Basics Webinar from the Controlcase Team
PCI PIN Basics Webinar from the Controlcase TeamPCI PIN Basics Webinar from the Controlcase Team
PCI PIN Basics Webinar from the Controlcase Team
 
Securing your Kubernetes cluster_ a step-by-step guide to success !
Securing your Kubernetes cluster_ a step-by-step guide to success !Securing your Kubernetes cluster_ a step-by-step guide to success !
Securing your Kubernetes cluster_ a step-by-step guide to success !
 
How to Get CNIC Information System with Paksim Ga.pptx
How to Get CNIC Information System with Paksim Ga.pptxHow to Get CNIC Information System with Paksim Ga.pptx
How to Get CNIC Information System with Paksim Ga.pptx
 

Web based database application design using vb.net and sql server