Financial Information Management Putting VB & SQL To Work Stefano Grazioli.

Slides:



Advertisements
Similar presentations
Programming with ADO.NET By Sam Nasr April 27, 2004 Programming with ADO.NET By Sam Nasr April 27, 2004.
Advertisements

Collections Create and organize your own privet and public collections.
Using Visual Basic 6.0 to Create Web-Based Database Applications
ASP.NET Programming with C# and SQL Server First Edition Chapter 8 Manipulating SQL Server Databases with ASP.NET.
Chapter 12 Database Connectivity with ASP.NET JavaScript, Third Edition.
Financial Information Management FIM: Databases Stefano Grazioli.
Three Tier Applications using the PI Historian, Microsoft Transaction Server (MTS), Internet Information Server (IIS), ActiveX Data Objects (AD0) and ActiveX.
Microsoft Access Ervin Ha.
Financial Information Management Stefano Grazioli.
Financial Information Management How do I talk to a DBMS? SQL In one hour.
Programming with Visual Basic.NET An Object-Oriented Approach  Chapter 8 Introduction to Database Processing.
ODBC, OLE DB, and ADO Introduction Dr. Ron Eaglin.
Financial Information Management DBMS and Operations, BI, and Analytics Stefano Grazioli.
Using Visual Basic 6.0 to Create Web-Based Database Applications
Overview of Data Access MacDonald Ch. 15 MIS 324 Professor Sandvig.
1 ASP.NET ASP.NET Rina Zviel-Girshin Lecture 4. 2 Overview Data Binding Data Providers Data Connection Data Manipulations.
A Simple Introduction. What is ADO.net? First the word ADO stands for ActiveX Data Objects And it is an integral part of.Net Framework of Microsoft hence.
CS480 Computer Science Seminar Introduction to Microsoft Solutions Framework (MSF)
.NET Data Access and Manipulation ADO.NET. Overview What is ADO.NET? Disconnected vs. connected data access models ADO.NET Architecture ADO.NET Core Objects.
SQL Server User Group Meeting Reporting Services Tips & Tricks Presented by Jason Buck of Custom Business Solutions.
Faculty of Electronic Engineering 1 Database Access API’s Aleksandar Stanimirović Leonid Stoimenov Aleksandar Milosavljević.
Database, SQL, and ADO.NET- Part 1 Session 11 Mata kuliah: M0874 – Programming II Tahun: 2010.
Financial Information Management Portfolio-level Delta Hedging Stefano Grazioli.
Module 7: Accessing Data by Using ADO.NET
Financial Information Management Changing data in a DB Stefano Grazioli.
Financial Information Management Operations, BI, and Analytics Stefano Grazioli.
© FPT SOFTWARE – TRAINING MATERIAL – Internal use 04e-BM/NS/HDCV/FSOFT v2/3 Introduction to ADO.NET ADO.NET - Lesson 01  Training time: 10 minutes  Author:
Object Oriented Software Development 10. Persistent Storage.
Presented by Joseph J. Sarna Jr. JJS Systems, LLC
ADO.NET Objects – Data Providers Dr. Ron Eaglin. Requirements Visual Studio 2005 Microsoft SQL Server 2000 or 2005 –Adventure Works Database Installed.
© Stefano Grazioli - Ask for permission for using/quoting:
Database Concepts Track 3: Managing Information using Database.
© Stefano Grazioli - Ask for permission for using/quoting:
Database Connectivity with ASP.NET. 2 Introduction Web pages commonly used to: –Gather information stored on a Web server database Most server-side scripting.
ADO.NET FUNDAMENTALS BEGINNING ASP.NET 3.5 IN C#.
1 Database Programming with ADO.NET Kashef Mughal.
Financial Information Management FIM: Databases Stefano Grazioli.
Financial Information Management Business Intelligence Putting VBA & SQL To Work.
© Stefano Grazioli - Ask for permission for using/quoting: Putting VBA & SQL To Work.
© Stefano Grazioli - Ask for permission for using/quoting: Stefano Grazioli.
Financial Information Management Modifying data in a DB Stefano Grazioli.
© Stefano Grazioli - Ask for permission for using/quoting: Stefano Grazioli.
© Stefano Grazioli - Ask for permission for using/quoting: Source: Excel VBA Programming by John Walkenbach.
ADO .NET from. ADO .NET from “ADO .Net” Evolution/History of ADO.NET MICROSOFT .NET “ADO .Net” Evolution/History of ADO.NET History: Most applications.
.NET Data Access and Manipulation
Databases Stefano Grazioli.
Control Structures (part II)
Common SQL keywords. Building and using CASE Tools Data Base with Microsoft SQL-Server and C#
ASP.NET Programming with C# and SQL Server First Edition
Process Automation The Technology
Process Automation The Technology
Business Intelligence
Data Virtualization Demoette… ADO.NET Client
BI tools: Excel’s Pivot table
Programming the Web Using ASP.Net
Lecture 6 VB.Net SQL Server.
Dynamic SQL Queries Stefano Grazioli.
ADO.NET Accessing Databases in VS.NET
Tonga Institute of Higher Education
Control Structures (part II)
Dynamic SQL Queries Stefano Grazioli.
Process Automation: From models to code
BI: Accessing Enterprise Data
BI: Accessing Enterprise Data
Dynamic SQL Queries Stefano Grazioli.
Trading Stock and Options in Athens
Dynamic SQL Queries Stefano Grazioli.
BI tools: Excel’s Pivot table
Operations, BI, and Analytics
Trading Stock and Options in Athens
Presentation transcript:

Financial Information Management Putting VB & SQL To Work Stefano Grazioli

Critical Thinking  Still going strong  VPN, then “cmd”, then runas /user:mcintire\MyUserName "C:\Program Files (x86)\Microsoft Visual Studio 12.0\Common7\IDE\devenv.exe"  Easy meter

Financial Information Management Accessing Enterprise Data Using Excel & ADO

Where is my Data? In a DBMS on the network In memory DATASET fastfast Speedslowbestfast Depends on bandwidth VolumemediumSmall/mediummediumVery large Accesseasy difficultmedium Backupmediumpoorn/aexcellent SecuritypoorPoor/mediumexcellentgood In a file slowslow Your local machine Server slowslow

ADO.NET  ActiveX Data Object  MS Technology to manage enterprise data  Use ADO to run SQL queries on remote servers, collect the results, and present them to the user.

Database Plumbing Standard parts, put together in standard ways are called architectures Standard parts are called ‘objects’

Software Objects

 An object is a bundle of data and ‘methods’  Object Classes and Object Instances Class = code to build an instance Instance = physical item running on your machine  Instances are built with the keyword new Dim myDeskClock As DeskClock = new DeskClock() Name, a variable Class name (type) keyword Method that creates the deskclock

ADO architecture Remote DataBase (financial data) Remote DataBase (financial data) Client (your program on your machine) SQL Query string Connection string SqlConnection SqlAdapter ListObject DataSet DataTable s DataRow s DB Server SqlCommand On your Spreadsheet

Financial Information Management DEMO

Financial Information Management WINIT What Is New In Technology?

You do the talking  Name, Major  Learning objectives  Things you like about the class  Things that can be improved  Attitude towards the Tournament

Financial Information Management Homework Using ADO to Retrieve Financial Data

 Make sure that you understand the ADO architecture diagram before coding.