Awp Presentation2
Awp Presentation2
ADO.NET
Fundamentals
• ADO.NET stands for ActiveX Data
Object
Pawan Singh(337)
Omkar Ghadigaonkar(310)
Jignesh Tanawde(339)
Shivam Taralkar(340)
Ankita Kolha (316)
What is ADO.Net?
• It is a database access technology created by Microsoft as part of its .NET framework
that can access any kind of data source
3. Cloud Databases
Hosted on cloud platforms for scalability and
ease of management.Scalable resources for
optimal performance.
Examples: AWS RDS, Google Cloud SQL,
Azure SQL Database.
SQL Basics
Retrieving data from a table using Removing data from a table using
SELECT queries DELETE FROM queries
1 2 3 4
Create Update
Inserting new data into a table using Updating existing data in a table using
INSERT INTO queries. UPDATE queries
Introduction to Data Binding
Data binding is the process Data binding provides a way Data binding is commonly used
of connecting the data source to eliminate repetitive code in web frameworks such as
in your application to the and simplify the development Angular, React, and Vue.js. It
user interface (UI). It updates process. It reduces the time makes it easier to create
the UI automatically and effort needed to keep the dynamic and responsive
whenever the data changes. UI in sync with changes in applications that respond to
the data source. user interactions.
Benefits of Data Binding
1 Simplifies Code 2 Eliminates Repetitive Code
Data binding simplifies when compared to With data binding, code duplication is
traditional selector and event-based methods. eliminated. Updates to the application's data
It provides a cleaner and more manageable source automatically update the application's
codebase. UI, reducing the amount of duplicate code.
Developers using data binding can work Data binding enables a more dynamic and
more quickly and efficiently than those using responsive user experience. It provides the
traditional methods. This is because data user with a seamless experience, where
binding reduces the amount of boilerplate changes to an application's data source are
code a developer needs to write. nearly instantly reflected in the UI.
One-Way Binding
Application Database
Connection
i.e Project
• Data Provider are the provider which help us to connect with different
type of database.
Types of Data Provider
Types Explain Namespace
Data Provider for SQL Server It provides data access for System.Data.SqlClient
Microsoft SQL Server.
Data Provider for OLE DB It is used to connect with OLE DB. System.Data.OleDb
Data Provider for Oracle It is used for Oracle data sources System.Data.OracleClient