Metadata.

Slides:



Advertisements
Similar presentations
Query Methods (SQL). What is SQL A programming language for databases. SQL (structured Query Language) It allows you add, edit, delete and run queries.
Advertisements

ACCESS PART 2. Objectives Database Tables Table Parts Key Field Query and Reports Import from Excel Link to Excel.
© 2002 by Prentice Hall 1 David M. Kroenke Database Processing Eighth Edition Chapter 2 Introduction to Database Development.
Access Quiz October 24, The database objects bar in Access contains icons for tables, queries, forms and reports 1.True 2.False.
Mail Merge. What is a mail merge? One letter that you want to send to lots of different people.
JDBC. In This Class We Will Cover: What SQL is What ODBC is What JDBC is JDBC basics Introduction to advanced JDBC topics.
1 Foundations of Software Design Lecture 27: Java Database Programming Marti Hearst Fall 2002.
Some Introductory Programming 1. Structured Query Language - used for queries. - a standard database product. 2. Visual Basic for Applications - use of.
1 times table 2 times table 3 times table 4 times table 5 times table
Chapter 2 Introduction to Database Development Database Processing David M. Kroenke © 2000 Prentice Hall.
MMG508.  Access Types  Tables  Relational tables  Queries  Stored database queries  Forms  GUI forms for data entry/display  Reports  Reports.
Chapter 121 Adding Power to Database Access with JSP JavaServer Pages By Xue Bai.
ACCESS. WHAT IS ACCESS? ACCESS IS A DATABASE SOFTWARE PROGRAM DEVELOPED BY MICROSOFT.
1. 2 icoffey ****** 3 decimal numbers Sales.
© Wang Bin 2004 JDBC ----Java Database Connectivity.
Java Database Connectivity (JDBC) Introduction to JDBC JDBC is a simple API for connecting from Java applications to multiple databases. Lets you smoothly.
Database Programming in Java Corresponds with Chapter 32, 33.
Simple Database.
Relational Lists.txt Excel can import multiple file types.txt Excel can import multiple file types.
CVSQL 2 The Revenge of the SQL. The present Read-only access to CVS repository logs Language is a subset of SQL XML interface for returning results Built-in.
Introduction: Databases By Margaret Lion 1. What is a database? A collection of data organized to serve many applications efficiently by centralizing.
JDBC. Preliminaries Database Database Collection of data Collection of data DBMS DBMS Database management system Database management system Stores and.
Chapter 25 Databases. Chapter Scope Database concepts Tables and queries SQL statements Managing data in a database Java Foundations, 3rd Edition, Lewis/DePasquale/Chase25.
Java Database Connectivity (JDBC). Topics 1. The Vendor Variation Problem 2. SQL and Versions of JDBC 3. Creating an ODBC Data Source 4. Simple Database.
Ch 14 QQ T F 1.A database table consists of fields and records. T F 2.Good data validation techniques can help improve data integrity. T F 3.An index is.
1 Database Systems Introduction to Microsoft Access Part 2.
Forms and Subforms 5.02 Understand database queries, forms, and reports used in business.
Copyright © 2002 ProsoftTraining. All rights reserved. Building Database Client Applications Using JDBC 2.0.
Intro to Databases Vocabulary Copyright © Texas Education Agency, All rights reserved.
Database Management System. DBMS A software package that allows users to create, retrieve and modify databases. A database is a collection of related.
1 MS Access. 2 Database – collection of related data Relational Database Management System (RDBMS) – software that uses related data stored in different.
Queries Objective 5.02 Understand queries, forms, and reports used in business.
Multiplication Facts Table of Contents 0’s 1’s 2’s 3’s 4’s 5’s 6’s 7’s 8’s 9’s 10’s.
Web Programming MySql JDBC Web Programming.
What is an Entity Relationship Diagram?. An Entity Relationship Diagram is a graphic that is speacialized to illustrate or give examples of the inter.
2006 JavaOne SM Conference | Session BOF-0367 JDBC™Technology-based Metadata Recipes Mahmoud Parsian Server Architect LimeLife, Inc.
* Database is a group of related objects * Objects can be Tables, Forms, Queries or Reports * All data reside in Tables * A Row in a Table is a record.
$100 $200 $300 $400 $500 $100 $200 $300 $400 $500 $100 $200 $300 $400 $500 $100 $200 $300 $400 $500 $100 $200 $300 $400 $500 $100 $200 $300.
Tables Learning Support
Jennifer Widom Relational Databases The Relational Model.
Databases Computer Technology. First Record Last Record New Record Previous Record Current Record Next Record Working with Microsoft Access (Database)
ACCESS CHAPTER 2 Introduction to ACCESS Learning Objectives: Understand ACCESS icons. Use ACCESS objects, including tables, queries, forms, and reports.
Database Overview What is a database? What types of databases are there? How are databases more powerful than spreadsheets?
Using Oracle JDBC How to Run JDBC on Your Account Communication Mechanism Using Metadata Building a Database Auto Commit v.s Atomic Transaction.
$200 $400 $600 $800 $1000 $200 $400 $600 $800 $1000 $200 $400 $600 $800 $1000 $200 $400 $600 $800 $1000 $200 $400 $600 $800 $1000 $200.
Design a Relational Database Identify Database Purpose
Database Management  .
Times Tables.
1) What is a Database? A database is an organized collection of information about a subject. Examples: Address Book, Telephone Book.
TUTORIAL 2: Creating Query for Bill Processing Using
الدرس الثامن (الجزء الأول)
Relational Databases The Relational Model.
Relational Databases The Relational Model.
1) What is a Database? A database is an organized collection of information about a subject. Examples: Address Book, Telephone Book.
Microsoft Excel 2007 The L Line The Express Line to Learning L Line
Databases Computer Technology.
Testing a persistence layer
Databases Computer Technology.
Access: Reports Participation Project
Data Access Layer (Con’t) (Overview)
Creating a simple query in the Design View
3 times tables.
6 times tables.
Configuration Results
G061 - Data Dictionary.
Microsoft Access Date.
Databases WOW!! A database is a collection of related data.
Access Click on file and then you want a new database.
8 1 7 Subtraction Facts
Interactive Powerpoint
Presentation transcript:

Metadata

Contents Metadata Read information about all tables in a database Report information about a result set

1. Metadata JDBC can give you additional information about the structure of a database and its tables. DatabaseMetaData : gives data about the database. ResultSetMetaData : reports information about a result set

2. Read information about all tables in a database

3. Report information about a result set ResultSetMetaData reports information about a result set. Whenever you have a result set from a query, you can inquire about the number of columns and each column's name, type, and field width.