SlideShare a Scribd company logo
Web based database application design using vb.net and sql server
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
Web based database application design using vb.net and 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
Web based database application design using vb.net and sql server
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
Web based database application design using vb.net and sql server
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
Web based database application design using vb.net and sql server
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
Web based database application design using vb.net and sql server
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
Web based database application design using vb.net and sql server
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
Web based database application design using vb.net and sql server
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
Web based database application design using vb.net and sql server
Recipe….
Open and Test Connection Using
SqlConnection Object
SqlCommand Object Creation
Set CommandText and Connection
Properties
Execute Method ExecuteNonQuery()
Display Message Accordingly
Web based database application design using vb.net and sql server
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

Viewers also liked (17)

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
 
Introduction to vb.net
Introduction to vb.netIntroduction to vb.net
Introduction to vb.net
Saad Wazir
 
Vb.net session 01
Vb.net session 01Vb.net session 01
Vb.net session 01
Niit Care
 
2016 12-6-kids'- digital-saturday-melacavo
2016 12-6-kids'- digital-saturday-melacavo2016 12-6-kids'- digital-saturday-melacavo
2016 12-6-kids'- digital-saturday-melacavo
Toolbox Coworking
 
Multimedia content based retrieval slideshare.ppt
Multimedia content based retrieval slideshare.pptMultimedia content based retrieval slideshare.ppt
Multimedia content based retrieval slideshare.ppt
govintech1
 
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
 
MS Access and Database Fundamentals
MS Access and Database FundamentalsMS Access and Database Fundamentals
MS Access and Database Fundamentals
Ananda Gupta
 
Introduction to vb.net
Introduction to vb.netIntroduction to vb.net
Introduction to vb.net
Saad Wazir
 
Vb.net session 01
Vb.net session 01Vb.net session 01
Vb.net session 01
Niit Care
 
2016 12-6-kids'- digital-saturday-melacavo
2016 12-6-kids'- digital-saturday-melacavo2016 12-6-kids'- digital-saturday-melacavo
2016 12-6-kids'- digital-saturday-melacavo
Toolbox Coworking
 
Multimedia content based retrieval slideshare.ppt
Multimedia content based retrieval slideshare.pptMultimedia content based retrieval slideshare.ppt
Multimedia content based retrieval slideshare.ppt
govintech1
 

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

DEE 431 Introduction to DBMS Slide 1
DEE 431 Introduction to DBMS Slide 1DEE 431 Introduction to DBMS Slide 1
DEE 431 Introduction to DBMS Slide 1
YOGESH SINGH
 
Comprehensive Guide to Effective Database Application Development Principles
Comprehensive Guide to Effective Database Application Development PrinciplesComprehensive Guide to Effective Database Application Development Principles
Comprehensive Guide to Effective Database Application Development Principles
EliasZerabruk
 
Ems
EmsEms
Ems
Siva Ram
 
System Analysis And Design
System Analysis And DesignSystem Analysis And Design
System Analysis And Design
Lijo Stalin
 
Lecture 1.pptx
Lecture 1.pptxLecture 1.pptx
Lecture 1.pptx
ArslanButt52
 
chapter 1 Introduction to Database Systems Best.pdf
chapter  1 Introduction to Database Systems Best.pdfchapter  1 Introduction to Database Systems Best.pdf
chapter 1 Introduction to Database Systems Best.pdf
Getnet Tigabie Askale -(GM)
 
Fundamentals of Database system - Databases and Database Users
Fundamentals of Database system - Databases and Database UsersFundamentals of Database system - Databases and Database Users
Fundamentals of Database system - Databases and Database Users
Mustafa Kamel Mohammadi
 
COMP303-Lecture-01_1539277777777777.pptx
COMP303-Lecture-01_1539277777777777.pptxCOMP303-Lecture-01_1539277777777777.pptx
COMP303-Lecture-01_1539277777777777.pptx
AqeelaTahir3
 
2nd chapter dbms.pptx
2nd chapter dbms.pptx2nd chapter dbms.pptx
2nd chapter dbms.pptx
kavitha623544
 
Fulltext01
Fulltext01Fulltext01
Fulltext01
navjeet11
 
PHP/MySQL First Session Material
PHP/MySQL First Session MaterialPHP/MySQL First Session Material
PHP/MySQL First Session Material
National IT Professionals Association of Afghanistan
 
DBMS Architecture having normalisation he
DBMS Architecture having normalisation heDBMS Architecture having normalisation he
DBMS Architecture having normalisation he
ab0067752
 
Chapter 1 Fundamentals of Database Management System
Chapter 1 Fundamentals of Database Management SystemChapter 1 Fundamentals of Database Management System
Chapter 1 Fundamentals of Database Management System
Eddyzulham Mahluzydde
 
Lecture 1 database management system .pdf
Lecture 1 database management system .pdfLecture 1 database management system .pdf
Lecture 1 database management system .pdf
samerelking3
 
Database Management System, Lecture-1
Database Management System, Lecture-1Database Management System, Lecture-1
Database Management System, Lecture-1
Sonia Mim
 
DBMS_UNIT_1.pdf
DBMS_UNIT_1.pdfDBMS_UNIT_1.pdf
DBMS_UNIT_1.pdf
Koteswari Kasireddy
 
Introduction & history of dbms
Introduction & history of dbmsIntroduction & history of dbms
Introduction & history of dbms
sethu pm
 
Lecture 1 database system notes full.pptx
Lecture 1 database system notes full.pptxLecture 1 database system notes full.pptx
Lecture 1 database system notes full.pptx
salutiontechnology
 
DBMS Introduction: Database Users and Databases
DBMS Introduction: Database Users and DatabasesDBMS Introduction: Database Users and Databases
DBMS Introduction: Database Users and Databases
FuckOff458583
 
Information Management unit 3 Database management systems
Information Management unit 3 Database management systemsInformation Management unit 3 Database management systems
Information Management unit 3 Database management systems
Ganesha Pandian
 
DEE 431 Introduction to DBMS Slide 1
DEE 431 Introduction to DBMS Slide 1DEE 431 Introduction to DBMS Slide 1
DEE 431 Introduction to DBMS Slide 1
YOGESH SINGH
 
Comprehensive Guide to Effective Database Application Development Principles
Comprehensive Guide to Effective Database Application Development PrinciplesComprehensive Guide to Effective Database Application Development Principles
Comprehensive Guide to Effective Database Application Development Principles
EliasZerabruk
 
System Analysis And Design
System Analysis And DesignSystem Analysis And Design
System Analysis And Design
Lijo Stalin
 
chapter 1 Introduction to Database Systems Best.pdf
chapter  1 Introduction to Database Systems Best.pdfchapter  1 Introduction to Database Systems Best.pdf
chapter 1 Introduction to Database Systems Best.pdf
Getnet Tigabie Askale -(GM)
 
Fundamentals of Database system - Databases and Database Users
Fundamentals of Database system - Databases and Database UsersFundamentals of Database system - Databases and Database Users
Fundamentals of Database system - Databases and Database Users
Mustafa Kamel Mohammadi
 
COMP303-Lecture-01_1539277777777777.pptx
COMP303-Lecture-01_1539277777777777.pptxCOMP303-Lecture-01_1539277777777777.pptx
COMP303-Lecture-01_1539277777777777.pptx
AqeelaTahir3
 
2nd chapter dbms.pptx
2nd chapter dbms.pptx2nd chapter dbms.pptx
2nd chapter dbms.pptx
kavitha623544
 
DBMS Architecture having normalisation he
DBMS Architecture having normalisation heDBMS Architecture having normalisation he
DBMS Architecture having normalisation he
ab0067752
 
Chapter 1 Fundamentals of Database Management System
Chapter 1 Fundamentals of Database Management SystemChapter 1 Fundamentals of Database Management System
Chapter 1 Fundamentals of Database Management System
Eddyzulham Mahluzydde
 
Lecture 1 database management system .pdf
Lecture 1 database management system .pdfLecture 1 database management system .pdf
Lecture 1 database management system .pdf
samerelking3
 
Database Management System, Lecture-1
Database Management System, Lecture-1Database Management System, Lecture-1
Database Management System, Lecture-1
Sonia Mim
 
Introduction & history of dbms
Introduction & history of dbmsIntroduction & history of dbms
Introduction & history of dbms
sethu pm
 
Lecture 1 database system notes full.pptx
Lecture 1 database system notes full.pptxLecture 1 database system notes full.pptx
Lecture 1 database system notes full.pptx
salutiontechnology
 
DBMS Introduction: Database Users and Databases
DBMS Introduction: Database Users and DatabasesDBMS Introduction: Database Users and Databases
DBMS Introduction: Database Users and Databases
FuckOff458583
 
Information Management unit 3 Database management systems
Information Management unit 3 Database management systemsInformation Management unit 3 Database management systems
Information Management unit 3 Database management systems
Ganesha Pandian
 
Ad

Recently uploaded (20)

The case for on-premises AI
The case for on-premises AIThe case for on-premises AI
The case for on-premises AI
Principled Technologies
 
Dev Dives: System-to-system integration with UiPath API Workflows
Dev Dives: System-to-system integration with UiPath API WorkflowsDev Dives: System-to-system integration with UiPath API Workflows
Dev Dives: System-to-system integration with UiPath API Workflows
UiPathCommunity
 
SDG 9000 Series: Unleashing multigigabit everywhere
SDG 9000 Series: Unleashing multigigabit everywhereSDG 9000 Series: Unleashing multigigabit everywhere
SDG 9000 Series: Unleashing multigigabit everywhere
Adtran
 
Improving Developer Productivity With DORA, SPACE, and DevEx
Improving Developer Productivity With DORA, SPACE, and DevExImproving Developer Productivity With DORA, SPACE, and DevEx
Improving Developer Productivity With DORA, SPACE, and DevEx
Justin Reock
 
Nix(OS) for Python Developers - PyCon 25 (Bologna, Italia)
Nix(OS) for Python Developers - PyCon 25 (Bologna, Italia)Nix(OS) for Python Developers - PyCon 25 (Bologna, Italia)
Nix(OS) for Python Developers - PyCon 25 (Bologna, Italia)
Peter Bittner
 
Dr Jimmy Schwarzkopf presentation on the SUMMIT 2025 A
Dr Jimmy Schwarzkopf presentation on the SUMMIT 2025 ADr Jimmy Schwarzkopf presentation on the SUMMIT 2025 A
Dr Jimmy Schwarzkopf presentation on the SUMMIT 2025 A
Dr. Jimmy Schwarzkopf
 
Grannie’s Journey to Using Healthcare AI Experiences
Grannie’s Journey to Using Healthcare AI ExperiencesGrannie’s Journey to Using Healthcare AI Experiences
Grannie’s Journey to Using Healthcare AI Experiences
Lauren Parr
 
European Accessibility Act & Integrated Accessibility Testing
European Accessibility Act & Integrated Accessibility TestingEuropean Accessibility Act & Integrated Accessibility Testing
European Accessibility Act & Integrated Accessibility Testing
Julia Undeutsch
 
Introducing the OSA 3200 SP and OSA 3250 ePRC
Introducing the OSA 3200 SP and OSA 3250 ePRCIntroducing the OSA 3200 SP and OSA 3250 ePRC
Introducing the OSA 3200 SP and OSA 3250 ePRC
Adtran
 
New Ways to Reduce Database Costs with ScyllaDB
New Ways to Reduce Database Costs with ScyllaDBNew Ways to Reduce Database Costs with ScyllaDB
New Ways to Reduce Database Costs with ScyllaDB
ScyllaDB
 
Jeremy Millul - A Talented Software Developer
Jeremy Millul - A Talented Software DeveloperJeremy Millul - A Talented Software Developer
Jeremy Millul - A Talented Software Developer
Jeremy Millul
 
Offshore IT Support: Balancing In-House and Offshore Help Desk Technicians
Offshore IT Support: Balancing In-House and Offshore Help Desk TechniciansOffshore IT Support: Balancing In-House and Offshore Help Desk Technicians
Offshore IT Support: Balancing In-House and Offshore Help Desk Technicians
john823664
 
Microsoft Build 2025 takeaways in one presentation
Microsoft Build 2025 takeaways in one presentationMicrosoft Build 2025 takeaways in one presentation
Microsoft Build 2025 takeaways in one presentation
Digitalmara
 
Droidal: AI Agents Revolutionizing Healthcare
Droidal: AI Agents Revolutionizing HealthcareDroidal: AI Agents Revolutionizing Healthcare
Droidal: AI Agents Revolutionizing Healthcare
Droidal LLC
 
Contributing to WordPress With & Without Code.pptx
Contributing to WordPress With & Without Code.pptxContributing to WordPress With & Without Code.pptx
Contributing to WordPress With & Without Code.pptx
Patrick Lumumba
 
Fortinet Certified Associate in Cybersecurity
Fortinet Certified Associate in CybersecurityFortinet Certified Associate in Cybersecurity
Fortinet Certified Associate in Cybersecurity
VICTOR MAESTRE RAMIREZ
 
ELNL2025 - Unlocking the Power of Sensitivity Labels - A Comprehensive Guide....
ELNL2025 - Unlocking the Power of Sensitivity Labels - A Comprehensive Guide....ELNL2025 - Unlocking the Power of Sensitivity Labels - A Comprehensive Guide....
ELNL2025 - Unlocking the Power of Sensitivity Labels - A Comprehensive Guide....
Jasper Oosterveld
 
Let’s Get Slack Certified! 🚀- Slack Community
Let’s Get Slack Certified! 🚀- Slack CommunityLet’s Get Slack Certified! 🚀- Slack Community
Let’s Get Slack Certified! 🚀- Slack Community
SanjeetMishra29
 
Multistream in SIP and NoSIP @ OpenSIPS Summit 2025
Multistream in SIP and NoSIP @ OpenSIPS Summit 2025Multistream in SIP and NoSIP @ OpenSIPS Summit 2025
Multistream in SIP and NoSIP @ OpenSIPS Summit 2025
Lorenzo Miniero
 
LSNIF: Locally-Subdivided Neural Intersection Function
LSNIF: Locally-Subdivided Neural Intersection FunctionLSNIF: Locally-Subdivided Neural Intersection Function
LSNIF: Locally-Subdivided Neural Intersection Function
Takahiro Harada
 
Dev Dives: System-to-system integration with UiPath API Workflows
Dev Dives: System-to-system integration with UiPath API WorkflowsDev Dives: System-to-system integration with UiPath API Workflows
Dev Dives: System-to-system integration with UiPath API Workflows
UiPathCommunity
 
SDG 9000 Series: Unleashing multigigabit everywhere
SDG 9000 Series: Unleashing multigigabit everywhereSDG 9000 Series: Unleashing multigigabit everywhere
SDG 9000 Series: Unleashing multigigabit everywhere
Adtran
 
Improving Developer Productivity With DORA, SPACE, and DevEx
Improving Developer Productivity With DORA, SPACE, and DevExImproving Developer Productivity With DORA, SPACE, and DevEx
Improving Developer Productivity With DORA, SPACE, and DevEx
Justin Reock
 
Nix(OS) for Python Developers - PyCon 25 (Bologna, Italia)
Nix(OS) for Python Developers - PyCon 25 (Bologna, Italia)Nix(OS) for Python Developers - PyCon 25 (Bologna, Italia)
Nix(OS) for Python Developers - PyCon 25 (Bologna, Italia)
Peter Bittner
 
Dr Jimmy Schwarzkopf presentation on the SUMMIT 2025 A
Dr Jimmy Schwarzkopf presentation on the SUMMIT 2025 ADr Jimmy Schwarzkopf presentation on the SUMMIT 2025 A
Dr Jimmy Schwarzkopf presentation on the SUMMIT 2025 A
Dr. Jimmy Schwarzkopf
 
Grannie’s Journey to Using Healthcare AI Experiences
Grannie’s Journey to Using Healthcare AI ExperiencesGrannie’s Journey to Using Healthcare AI Experiences
Grannie’s Journey to Using Healthcare AI Experiences
Lauren Parr
 
European Accessibility Act & Integrated Accessibility Testing
European Accessibility Act & Integrated Accessibility TestingEuropean Accessibility Act & Integrated Accessibility Testing
European Accessibility Act & Integrated Accessibility Testing
Julia Undeutsch
 
Introducing the OSA 3200 SP and OSA 3250 ePRC
Introducing the OSA 3200 SP and OSA 3250 ePRCIntroducing the OSA 3200 SP and OSA 3250 ePRC
Introducing the OSA 3200 SP and OSA 3250 ePRC
Adtran
 
New Ways to Reduce Database Costs with ScyllaDB
New Ways to Reduce Database Costs with ScyllaDBNew Ways to Reduce Database Costs with ScyllaDB
New Ways to Reduce Database Costs with ScyllaDB
ScyllaDB
 
Jeremy Millul - A Talented Software Developer
Jeremy Millul - A Talented Software DeveloperJeremy Millul - A Talented Software Developer
Jeremy Millul - A Talented Software Developer
Jeremy Millul
 
Offshore IT Support: Balancing In-House and Offshore Help Desk Technicians
Offshore IT Support: Balancing In-House and Offshore Help Desk TechniciansOffshore IT Support: Balancing In-House and Offshore Help Desk Technicians
Offshore IT Support: Balancing In-House and Offshore Help Desk Technicians
john823664
 
Microsoft Build 2025 takeaways in one presentation
Microsoft Build 2025 takeaways in one presentationMicrosoft Build 2025 takeaways in one presentation
Microsoft Build 2025 takeaways in one presentation
Digitalmara
 
Droidal: AI Agents Revolutionizing Healthcare
Droidal: AI Agents Revolutionizing HealthcareDroidal: AI Agents Revolutionizing Healthcare
Droidal: AI Agents Revolutionizing Healthcare
Droidal LLC
 
Contributing to WordPress With & Without Code.pptx
Contributing to WordPress With & Without Code.pptxContributing to WordPress With & Without Code.pptx
Contributing to WordPress With & Without Code.pptx
Patrick Lumumba
 
Fortinet Certified Associate in Cybersecurity
Fortinet Certified Associate in CybersecurityFortinet Certified Associate in Cybersecurity
Fortinet Certified Associate in Cybersecurity
VICTOR MAESTRE RAMIREZ
 
ELNL2025 - Unlocking the Power of Sensitivity Labels - A Comprehensive Guide....
ELNL2025 - Unlocking the Power of Sensitivity Labels - A Comprehensive Guide....ELNL2025 - Unlocking the Power of Sensitivity Labels - A Comprehensive Guide....
ELNL2025 - Unlocking the Power of Sensitivity Labels - A Comprehensive Guide....
Jasper Oosterveld
 
Let’s Get Slack Certified! 🚀- Slack Community
Let’s Get Slack Certified! 🚀- Slack CommunityLet’s Get Slack Certified! 🚀- Slack Community
Let’s Get Slack Certified! 🚀- Slack Community
SanjeetMishra29
 
Multistream in SIP and NoSIP @ OpenSIPS Summit 2025
Multistream in SIP and NoSIP @ OpenSIPS Summit 2025Multistream in SIP and NoSIP @ OpenSIPS Summit 2025
Multistream in SIP and NoSIP @ OpenSIPS Summit 2025
Lorenzo Miniero
 
LSNIF: Locally-Subdivided Neural Intersection Function
LSNIF: Locally-Subdivided Neural Intersection FunctionLSNIF: Locally-Subdivided Neural Intersection Function
LSNIF: Locally-Subdivided Neural Intersection Function
Takahiro Harada
 
Ad

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