Introduction to ADO Y.-H. Chen International College Ming-Chuan University Fall, 2004.

Slides:



Advertisements
Similar presentations
Publishing Your PDB Under Windows
Advertisements

Building Applications using ASP.NET and C# / Session 1 / 1 of 21 Session 1.
Session 6 Server-side programming - ASP. An ASP page is an HTML page interspersed with server-side code. The.ASP extension instead of.HTM denotes server-side.
The ADO Data Control. Universal Data Access Open Database Connectivity (ODBC) –standard for accessing data in databases OLE-DB –allows access to data.
 ADO Object Model  Database Connection  Record Set  Query Examples  Update & Insertion Examples  An Application Example Working with Database in.
Kashif Jalal CA-240 (072) Web Development Using ASP.NET CA – 240 Kashif Jalal Welcome to week – 2 of…
Multiple Tiers in Action
Robofest 2001 Online Management System Jim Needham MCS 4833/01 Senior Project Dr. Chan-Jin Chung, Ph.D.
ASP.NET Programming with C# and SQL Server First Edition Chapter 8 Manipulating SQL Server Databases with ASP.NET.
DT221/3 Internet Application Development Active Server Pages & Database Connection.
ASP Cookies Y.-H. Chen International College Ming-Chuan University Fall, 2004.
Overview of Database Access in.Net Josh Bowen CIS 764-FS2008.
Web-based Software Development - An introduction.
1 Web Database Processing. Web Database Applications Static Report Publishing a report is prepared from a database application and exported to HTML DB.
Module 11 : Backup and Restore Jong S. Bok
INFS 752 Summer Juan Salazar Please right click the symbol in the lower right corner, and then press preview, to hear the presentation for each page.
ADO Connect Y.-H. Chen International College Ming-Chuan University Fall, 2004.
Basics of Web Databases With the advent of Web database technology, Web pages are no longer static, but dynamic with connection to a back-end database.
3/8/00asp00 1 Active Server Pages from Microsoft Nancy McCracken Northeast Parallel Architectures Center at Syracuse.
CSS/417 Introduction to Database Management Systems Workshop 5.
The PI-ProcessBook Family Customizable views of your data - Anywhere you want them.
Server Side Programming ASP1 Server Side Programming Database Integration (cont.) Internet Systems Design.
Presentation 2003 Page 1 P-A Angenius, WinGADD_Presentation_2003a.ppt Content of presentation These slides is an introduction to WinGADD applications,
Using Visual Basic 6.0 to Create Web-Based Database Applications
Access The L Line The Express Line to Learning 2007 © Wiley Publishing All Rights Reserved. L Line.
9 Chapter Nine Compiled Web Server Programs. 9 Chapter Objectives Learn about Common Gateway Interface (CGI) Create CGI programs that generate dynamic.
Web Server Administration Chapter 7 Installing and Testing a Programming Environment.
Tutorial 10 by Sam ine1020 Introduction to Internet Engineering 1 Database & Server-side Scripting Tutorial 10.
ASP Introduction Y.-H. Chen International College Ming-Chuan University Fall, 2004.
Active Server Pages and Application Service Providers Architecture for 2000 and beyond Krishen Kota Denali Technologies
Lecture Note 1: Getting Started With ASP.  Introduction to ASP  Introduction to ASP An ASP file can contain text, HTML tags and scripts. Scripts in.
Module 9: Accessing Relational Data Using Microsoft Visual Studio.NET.
What is database?  Any Method for access info into Application from DataBase?  ODBC is standard for Accessing Data.  Problem with ODBC:  Information.
How to Connect to Database ODBC (Open Database Connectivity) ADO (ActiveX Data Object) ASP Code To Connect to Database Recordset Object Navigating through.
Web Server Administration Chapter 7 Installing and Testing a Programming Environment.
Web Architecture Introduction
Database Management Systems CS 420. Topics Outline 1. Introduction 2. HTML Review 3. VBScript 4. Access DBMS 5. Relational Database 6. Design Process.
Copyright © Curt Hill Connectivity Communicating with the Database.
CITA 310 Section 7 Installing and Testing a Programming Environment (Textbook Chapter 7)
PHP Introduction PHP is a server-side scripting language.
WEB SERVER SOFTWARE FEATURE SETS
An Investigation into using a Document Management System Presented by: Bijal RanaSupervisor: John Ebden.
Database Connectivity What is ADO. What is ADO? ADO is a Microsoft technology ADO stands for ActiveX Data Objects ADO is a Microsoft Active-X component.
ASP. ASP is a powerful tool for making dynamic and interactive Web pages An ASP file can contain text, HTML tags and scripts. Scripts in an ASP file are.
Database Connectivity with ASP.NET. 2 Introduction Web pages commonly used to: –Gather information stored on a Web server database Most server-side scripting.
ASP-2-1 SERVER AND CLIENT SIDE SCRITPING Colorado Technical University IT420 Tim Peterson.
PROGRAMMING IN VISUAL BASIC.NET CREATING YOUR FIRST WEB APPLICATION Bilal Munir Mughal 1 Chapter-3.
Web-Based Inventory Database Application By: Gar Seigla.
ASP Application Object Y.-H. Chen International College Ming-Chuan University Fall, 2004.
ASP Syntax Y.-H. Chen International College Ming-Chuan University Fall, 2004.
7-1 Active Server and ADO Colorado Technical University IT420 Tim Peterson.
ADO & Recordsets. ADO Description & History  ActiveX Data Objects  History  1991 ODBC  Data Access Objects (DAO) for VB developers (JET)  Remote.
Lecture 4 Manipulating Form Data using methods of Recordset and RecordsetClone in VBA Restrict data with filter 1 Rapid Application Development.
Generating XML Data from a Database Eugenia Fernandez IUPUI.
A S P. Outline  The introduction of ASP  Why we choose ASP  How ASP works  Basic syntax rule of ASP  ASP’S object model  Limitations of ASP  Summary.
Presented by: K.AMARNATH Ht.no:10841f0045 Guided by: T.Suneetha.
Web-based Software Development - An introduction
ASP.NET Programming with C# and SQL Server First Edition
Accessing the Database Server: ODBC, OLE DB, and ADO
Section 6.3 Server-side Scripting
Working with Database in ASP
ActiveX Data Objects (ADO)
Introduction to ASP By “FlyingBono” 2009_01 By FlyingBono 2009_01
PHP-language, database-programming
Web Development Using ASP .NET
VISUAL BASIC INTRODUCTION TO DATA CONNECTIVITY.
Introduction of Week 11 Return assignment 9-1 Collect assignment 10-1
Database Connectivity and Web Development
ASP Database Operations
Presentation transcript:

Introduction to ADO Y.-H. Chen International College Ming-Chuan University Fall, 2004

2 What is ADO?  ADO stands for ActiveX Data Objects.  With ADO you can access and manipulate data in a database.  You can move data from a server to a client, manipulate the data, and return updates to the server, with ADO's Remote Data Service (RDS).  ADO and RDS are automatically installed with Microsoft IIS.

3 What is ADO?  ADO is a Microsoft technology  ADO stands for ActiveX Data Objects  ADO is a Microsoft Active-X component  ADO is automatically installed with Microsoft IIS  ADO is a programming interface to access data in a database

4 What you should already know?  Before you continue you should have a basic understanding of the following: –WWW, HTML and the basics of building Web pages –Active Server Pages (ASP) –Structured Query Language (SQL)

5 Accessing a Database from ASP  The common way to access a database from inside an ASP page is to: –Create an ADO connection to a database –Open the database connection –Create an ADO recordset –Open the recordset –Extract the data you need from the recordset –Close the recordset –Close the connection