Object Relational Database Mapping. Alex Boughton Spring 2011
|
|
|
- Annabella Boone
- 10 years ago
- Views:
Transcription
1 + Object Relational Database Mapping Alex Boughton Spring 2011
2 + Presentation Overview Overview of database management systems What is ORDM Comparison of ORDM with other DBMSs Motivation for ORDM Quick Example How does ORDM work Attributes of ORDM Discussion of ORMLite framework Main Components Conceptual Diagrams and Comparisons In depth look at ORMLite and using its support for Android OS More Motivation Comparison using ORDM and RDBMS in an Android application Trade offs specific to ORMLite and Android Applications
3 + Overview of Database Technologies Relational Database Management Systems introduced in 1970 [3] mysql, SQLite3 Object Oriented Database Management Systems were released next
4 + Overview of Database Technologies (cont.) Object Relational Mapping Database Management APIs were developed out of motivation to combine the good things from the previous two. Introduced in 1990 s [1] Combined rich data type support and code minimization offered by OODBMS with the speed and portability of RDBMS * There are other types of database management systems (i.e. Document-oriented, NoSQL) but they are not mentioned here because they are not in the scope of object oriented development.
5 + What is Object Relational Database Mapping? Programming technique typically utilized through an API Can be implemented by the application A few popular APIs [1] Hibernate widely used Java implementation ORMlite Java implementation, gaining popularity with its new Android support (more on this API later) Django Python framework that has ORDM support built in Core Data Cocoa framework that ships with Mac OSX and iphoneos
6 + Object Relational Database Mapping Advantages Allows developers to convert data from rich data types used in object oriented programming languages to lower level relational database types Allows the use of self defined ADTs in database storage Helps developers maintain continuity in databases that are shared between applications For example instead of storing address as a VARCHAR, you can store it as an ADT Address with the specified format of that data type. Have all applications use the same Address class and continuity is achieved.
7 + Object Relational Mapping Limitations With the ability to have complex ADTs, efficiency may be lower for large scale applications Database size can also increase depending on the amount of methods stored with the objects and the number of entries stored Many larger applications with frequent database read/write activity will not gain from ORDM. ORDM can be very useful for mobile phone use(example later) and small applications
8 + What is a Relational Database? Relational Database Management System (RDBMS) Simple data with queries Example of data types in SQLite3 (Supported on Android OS and iphone OS) [2] Data Type NULL INTEGER REAL BLOB TEXT Description Null value signed integer floating point value, stored as an 8-byte IEEE floating point blob of data, stored exactly as it was input text string, stored using the database encoding
9 + Relational Database Data Type Limitations and Advantages [3] Lack of support for abstract data types (ADTs) causes extra code in applications for going in between raw data types and ADTs The simplistic data types can be faster for large databases and applications where speed is important Uses Structured Query Language (SQL) which makes databases portable across different systems
10 + What are Object Oriented Databases? [1] Essentially allows objects to be stored persistently with support for storage and retrieval Allows for complex data storage but does not use SQL for query support ODL Object Defining Language OID Object ID OQL Object Query Language; similar to SQL but has features for inheritance, polymorphism, and object identity
11 + Object Oriented Database Management Systems Limitations and Advantages [3] Decreases the amount of code in applications because they don t need to generate SQL statements Poor performance and scalability compared to other data storage methods Difficulty catching on because with lack of standards developers are cautious about using these systems Introduced the idea for better data type support in database systems
12 + Motivation for ORDM Technology [4] Wanted the efficiency from having the underlying RDBMS implementation, along with the portability gained by using the SQL Wanted ADTs, inheritance, and polymorphism as in OODBMS implementation Result was a software layer between RDBMS and applications to provide both. ORDM Technology arose in the 1990 s and gained popularity with the rise of social media and web applications [3]
13 + Code Example for RDBMS [4] Query to select names of customers whose address is in New York The query requires information from Customers and Addresses because the database does not know the relationship between customer id s and the unique identifier in the table Addresses
14 + Code Example for ORDBMS (cont.) The same query to select the names of customers who live in New York The query becomes more simple for the developer because the database knows that the customers are linked to the address by their id s
15 + Attributes Common to ORDM APIs Database Underlying RDBMS implementation ORMLite supports MySQL, SQLite, Postgres, Oracle and others Query Representation Offer a simplified way for developers to issue queries Many APIs also offer support for executing raw SQL statements Data Object Some API s have interfaces that the application defined objects must implement Usually require an empty constructor Must use some mark up language(@ notation in eclipse) or some other way to denote which data fields will be stored
16 + Attributes Common to ORDM APIs (cont.) Iterator Sometimes referred to as a cursor Typically the API will implement this class as a subclass of the RDBMS s Iterator class, giving the developer a better encapsulation for Objects for logging support Other Database specific classes that vary with the RDBMS implementation
17 + A Closer Look at a Specific ORDM API Why ORMLite? ORMLite is commonly used for Java applications and supports many different types of underlying relational database implementations Mobile application development is becoming more and more important for software solutions and ORMLite has released a new and more reliable Android supported version of their API Until looking into ORMLite, support for more advanced database uses in Android apps was sparse
18 + A Closer Look at a Specific ORDM API (cont.) Learning to use ORMLite with mobile application development will help make better mobile applications that can be more easily maintained and created ORMLite in Android shows how an object oriented language based application can benefit from using ORDM technology With out the technology there is a bottleneck at the data transfer point all of your lovely class structures and OO designs need to be flattened and simplified back to a construct that (in the case of SQLite) may only have 5 data types!! There is an elegant solution to the data storage problem that complements the designing and analysis that is involved in using OO, and ORMLite is a lite way to start learning about it
19 + ORMLite: Main Components ORMLiteSqliteOpenHelper [5] Abstract class that extends android.database.sqlite.sqliteopenhelper The implementation should include: Wrappers for the getdao(class<t> data) method should be implemented for each type of Dao that is needed (ie number of data classes in the system) public Dao<MyData, Integer> getmydatadao() throws SQLException { } if (MyDataDao == null) { } MyDataDao = getdao(mydata.class); return MyDataDao;
20 + ORMLite: Main Components Activity Support ORMLite extends all the variations of Android Activity (ie ListActivity, TabActivity) Inherits regular methods from activities in Android, but then adds a few of its own to assist with data management
21 + ORMLite: Main Components DAOs Data Access Objects Act as a bridge between the database implementation and the data class Dao<T,ID> is an interface and it is implemented by BaseDaoImpl<T,ID> ORMLite uses the factory design pattern to create new Dao s within the implementation of OrmLiteSqliteOpenHelper
22 + ORMLite: Main Components DAOs Because it implements Iterator, you can use the iterator design pattern to loop over all the entries in a table Used for accessing and storing info on the db with some of these methods: create(t data) delete(t data) queryforall() Refresh(T data)
23 + What does it look like with out ORMLite?
24 + ORMLite: Main Components Overview
25 + ORMLite: UML Diagram
26 + ORMLite Mechanics: DatabaseField [5]
27 + Real Life Motivation If an Android project is using a database for anything more then the need of persistent storage (Android Cache files are not guaranteed to be persistent), then ORDM is likely to be a good choice for implementing the database ORMLite with Android support is a very new API (weeks old) ICUPDb an example of a database intensive application that was built before ORMLite was released
28 + Example: Creating a Database in Android without ORDM [7]
29 + Example: Creating a Database in Android without ORDM (cont.) [7]
30 + Example: Creating a Database in Android with ORDM [5]
31 + Example: Query a Database in Android without ORDM
32 + Example: Query a Database in Android with ORDM [5]
33 + Example: Insert into a Database in Android without ORDM
34 + Example: Insert into a Database in Android with ORDM
35 + ORDM and Android Specific Trade Offs Your Activity classes will need to be either from ORMLite or extend them, this can create some complex inheritance structures The code will be easier to maintain and less tedious to work with at any point in development For application development in particular bringing in another library may not be an option if size is a big constraint of the application
36 + References [1] Wikipedia retrieved March 28, 2011 from [2] SQLite retrieved March 28, 2011 from [3] Ramakanth Devarakonda, Object-Relational Database Systems The Road Ahead, Crossroads 2001 [4] Praveen Seshadre, Enhanced Abstract Data Types in Object-Relational Databases, Springer- Verlag New York Inc [5] ORMLite Retrieved March 30, 2011 from [6] Ming Wang, Implementation of Object-Relational DBMSs in a Relational Database Course, SIGCSE 2001 [7] ICUP 2011 Senior Project, Team Members: Alex Boughton, Kim Nguyen, Jon Tsui, Matthew Ripley, and Zainab Jarourdi
Complex Data and Object-Oriented. Databases
Complex Data and Object-Oriented Topics Databases The object-oriented database model (JDO) The object-relational model Implementation challenges Learning objectives Explain what an object-oriented data
Database Management System Choices. Introduction To Database Systems CSE 373 Spring 2013
Database Management System Choices Introduction To Database Systems CSE 373 Spring 2013 Outline Introduction PostgreSQL MySQL Microsoft SQL Server Choosing A DBMS NoSQL Introduction There a lot of options
Java and RDBMS. Married with issues. Database constraints
Java and RDBMS Married with issues Database constraints Speaker Jeroen van Schagen Situation Java Application store retrieve JDBC Relational Database JDBC Java Database Connectivity Data Access API ( java.sql,
OBJECTS AND DATABASES. CS121: Introduction to Relational Database Systems Fall 2015 Lecture 21
OBJECTS AND DATABASES CS121: Introduction to Relational Database Systems Fall 2015 Lecture 21 Relational Model and 1NF 2 Relational model specifies that all attribute domains must be atomic A database
Object Oriented Databases. OOAD Fall 2012 Arjun Gopalakrishna Bhavya Udayashankar
Object Oriented Databases OOAD Fall 2012 Arjun Gopalakrishna Bhavya Udayashankar Executive Summary The presentation on Object Oriented Databases gives a basic introduction to the concepts governing OODBs
Using Object Database db4o as Storage Provider in Voldemort
Using Object Database db4o as Storage Provider in Voldemort by German Viscuso db4objects (a division of Versant Corporation) September 2010 Abstract: In this article I will show you how
What is a database? COSC 304 Introduction to Database Systems. Database Introduction. Example Problem. Databases in the Real-World
COSC 304 Introduction to Systems Introduction Dr. Ramon Lawrence University of British Columbia Okanagan [email protected] What is a database? A database is a collection of logically related data for
Financial Management System
DEPARTMENT OF COMPUTER SCIENCE & ENGINEERING UNIVERSITY OF NEBRASKA LINCOLN Financial Management System CSCE 156 Computer Science II Project Student 002 11/15/2013 Version 3.0 The contents of this document
Customer Bank Account Management System Technical Specification Document
Customer Bank Account Management System Technical Specification Document Technical Specification Document Page 1 of 15 Table of Contents Contents 1 Introduction 3 2 Design Overview 4 3 Topology Diagram.6
database abstraction layer database abstraction layers in PHP Lukas Smith BackendMedia [email protected]
Lukas Smith database abstraction layers in PHP BackendMedia 1 Overview Introduction Motivation PDO extension PEAR::MDB2 Client API SQL syntax SQL concepts Result sets Error handling High level features
Object Oriented Database Management System for Decision Support System.
International Refereed Journal of Engineering and Science (IRJES) ISSN (Online) 2319-183X, (Print) 2319-1821 Volume 3, Issue 6 (June 2014), PP.55-59 Object Oriented Database Management System for Decision
Overview RDBMS-ORDBMS- OODBMS
Overview RDBMS-ORDBMS- OODBMS 1 Database Models Transition Hierarchical Data Model Network Data Model Relational Data Model ER Data Model Semantic Data Model Object-Relational DM Object-Oriented DM 2 Main
Object Oriented Databases (OODBs) Relational and OO data models. Advantages and Disadvantages of OO as compared with relational
Object Oriented Databases (OODBs) Relational and OO data models. Advantages and Disadvantages of OO as compared with relational databases. 1 A Database of Students and Modules Student Student Number {PK}
The ObjectStore Database System. Charles Lamb Gordon Landis Jack Orenstein Dan Weinreb Slides based on those by Clint Morgan
The ObjectStore Database System Charles Lamb Gordon Landis Jack Orenstein Dan Weinreb Slides based on those by Clint Morgan Overall Problem Impedance mismatch between application code and database code
Java Application Developer Certificate Program Competencies
Java Application Developer Certificate Program Competencies After completing the following units, you will be able to: Basic Programming Logic Explain the steps involved in the program development cycle
Object-Oriented & Object-Relational DBMS. Example App: Asset Management. An Asset Management Scenario. Object-Relational Databases
Object-Oriented & Object-Relational DBMS R & G (& H) Chapter 23 You know my methods, Watson. Apply them. -- A.Conan Doyle, The Memoirs of Sherlock Holmes Motivation Relational model (70 s): clean and simple
ObjectOrientedDatabaseManagementSystemsConceptsAdvantagesLimitationsandComparativeStudywithRelationalDatabaseManagementSystems
Global Journal of Computer Science and Technology: C Software & Data Engineering Volume 15 Issue 3 Version 1.0 Year 2015 Type: Double Blind Peer Reviewed International Research Journal Publisher: Global
Performance Comparison of Persistence Frameworks
Performance Comparison of Persistence Frameworks Sabu M. Thampi * Asst. Prof., Department of CSE L.B.S College of Engineering Kasaragod-671542 Kerala, India [email protected] Ashwin A.K S8, Department
Object oriented design process
Unit IV Design Object oriented design process 1.Apply design axioms to design classes 1.1 Refine and complete the static UML class diagram 1.2 Iterate and refine again 2. Design the access layer 2.1 create
How to Design and Create Your Own Custom Ext Rep
Combinatorial Block Designs 2009-04-15 Outline Project Intro External Representation Design Database System Deployment System Overview Conclusions 1. Since the project is a specific application in Combinatorial
Java (12 Weeks) Introduction to Java Programming Language
Java (12 Weeks) Topic Lecture No. Introduction to Java Programming Language 1 An Introduction to Java o Java as a Programming Platform, The Java "White Paper" Buzzwords, Java and the Internet, A Short
Advanced Object Oriented Database access using PDO. Marcus Börger
Advanced Object Oriented Database access using PDO Marcus Börger ApacheCon EU 2005 Marcus Börger Advanced Object Oriented Database access using PDO 2 Intro PHP and Databases PHP 5 and PDO Marcus Börger
Cache Database: Introduction to a New Generation Database
Cache Database: Introduction to a New Generation Database Amrita Bhatnagar Department of Computer Science and Engineering, Birla Institute of Technology, A 7, Sector 1, Noida 201301 UP [email protected]
Introductory Concepts
Introductory Concepts 5DV119 Introduction to Database Management Umeå University Department of Computing Science Stephen J. Hegner [email protected] http://www.cs.umu.se/~hegner Introductory Concepts 20150117
Big Data Solutions. Portal Development with MongoDB and Liferay. Solutions
Big Data Solutions Portal Development with MongoDB and Liferay Solutions Introduction Companies have made huge investments in Business Intelligence and analytics to better understand their clients and
Applying Object Oriented Concepts to RDBMS
Applying Object Oriented Concepts to RDBMS Anusha Paruchuri 1, Ch. Phani Krishna 2, V.Samson Deva Kumar 3 1 Student, IV/IV B.Tech, Department of Computer Science and Engineering, K L University, Vaddeswaram,
Intro to Databases. ACM Webmonkeys 2011
Intro to Databases ACM Webmonkeys 2011 Motivation Computer programs that deal with the real world often need to store a large amount of data. E.g.: Weather in US cities by month for the past 10 years List
Student Attendance Through Mobile Devices
Student Attendance Through Mobile Devices Anurag Rastogi Kirti Gupta Department of Computer Science and Engineering National Institute of Technology Rourkela Rourkela-769 008, Odisha, India Student Attendance
MA-WA1920: Enterprise iphone and ipad Programming
MA-WA1920: Enterprise iphone and ipad Programming Description This 5 day iphone training course teaches application development for the ios platform. It covers iphone, ipad and ipod Touch devices. This
Distributed Database Access in the LHC Computing Grid with CORAL
Distributed Database Access in the LHC Computing Grid with CORAL Dirk Duellmann, CERN IT on behalf of the CORAL team (R. Chytracek, D. Duellmann, G. Govi, I. Papadopoulos, Z. Xie) http://pool.cern.ch &
Chapter 9 Java and SQL. Wang Yang [email protected]
Chapter 9 Java and SQL Wang Yang [email protected] Outline Concern Data - File & IO vs. Database &SQL Database & SQL How Connect Java to SQL - Java Model for Database Java Database Connectivity (JDBC)
Core Java+ J2EE+Struts+Hibernate+Spring
Core Java+ J2EE+Struts+Hibernate+Spring Java technology is a portfolio of products that are based on the power of networks and the idea that the same software should run on many different kinds of systems
Integrating Big Data into the Computing Curricula
Integrating Big Data into the Computing Curricula Yasin Silva, Suzanne Dietrich, Jason Reed, Lisa Tsosie Arizona State University http://www.public.asu.edu/~ynsilva/ibigdata/ 1 Overview Motivation Big
Using Relational Databases to Provide Object Persistence
Chapter 14 Using Relational Databases to Provide Object Persistence Learning Objectives After studying this chapter, you should be able to: Concisely define each of the following terms: persistence, serialization,
MADOCA II Data Logging System Using NoSQL Database for SPring-8
MADOCA II Data Logging System Using NoSQL Database for SPring-8 A.Yamashita and M.Kago SPring-8/JASRI, Japan NoSQL WED3O03 OR: How I Learned to Stop Worrying and Love Cassandra Outline SPring-8 logging
Chapter 13. Introduction to SQL Programming Techniques. Database Programming: Techniques and Issues. SQL Programming. Database applications
Chapter 13 SQL Programming Introduction to SQL Programming Techniques Database applications Host language Java, C/C++/C#, COBOL, or some other programming language Data sublanguage SQL SQL standards Continually
Object-Relational Databases
C H A P T E R 14 Object-Relational Databases Learning Objectives After studying this chapter, you should be able to: Concisely define each of the following terms: persistence, serialization, object-relational
Part VI. Object-relational Data Models
Part VI Overview Object-relational Database Models Concepts of Object-relational Database Models Object-relational Features in Oracle10g Object-relational Database Models Object-relational Database Models
How graph databases started the multi-model revolution
How graph databases started the multi-model revolution Luca Garulli Author and CEO @OrientDB QCon Sao Paulo - March 26, 2015 Welcome to Big Data 90% of the data in the world today has been created in the
Object Oriented Design with UML and Java. PART XVIII: Database Technology
Object Oriented Design with UML and Java PART XVIII: Database Technology Copyright David Leberknight & Ron LeMaster. Version 2 What is a Database? Computerized record-keeping system. Collection of stored
SQL. Short introduction
SQL Short introduction 1 Overview SQL, which stands for Structured Query Language, is used to communicate with a database. Through SQL one can create, manipulate, query and delete tables and contents.
ITG Software Engineering
Basic Android Development Course ID: Page 1 Last Updated 12/15/2014 Basic Android Development ITG Software Engineering Course Overview: This 5 day course gives students the fundamental basics of Android
Geodatabase Programming with SQL
DevSummit DC February 11, 2015 Washington, DC Geodatabase Programming with SQL Craig Gillgrass Assumptions Basic knowledge of SQL and relational databases Basic knowledge of the Geodatabase We ll hold
Search Big Data with MySQL and Sphinx. Mindaugas Žukas www.ivinco.com
Search Big Data with MySQL and Sphinx Mindaugas Žukas www.ivinco.com Agenda Big Data Architecture Factors and Technologies MySQL and Big Data Sphinx Search Server overview Case study: building a Big Data
Open Source Telemedicine Android Client Development Introduction
Open Source Telemedicine Android Client Development Introduction Images of phone in this presentation Google. All rights reserved. This content is excluded from our Creative Commons license. For more information,
Introduction to Object-Oriented and Object-Relational Database Systems
, Professor Uppsala DataBase Laboratory Dept. of Information Technology http://www.csd.uu.se/~udbl Extended ER schema Introduction to Object-Oriented and Object-Relational Database Systems 1 Database Design
Specialized Programme on Web Application Development using Open Source Tools
Specialized Programme on Web Application Development using Open Source Tools A. NAME OF INSTITUTE Centre For Development of Advanced Computing B. NAME/TITLE OF THE COURSE C. COURSE DATES WITH DURATION
Specialized Programme on Web Application Development using Open Source Tools
Specialized Programme on Web Application Development using Open Source Tools Objective: At the end of the course, Students will be able to: Understand various open source tools(programming tools and databases)
Dimension Technology Solutions Team 2
Dimension Technology Solutions Team 2 emesa Web Service Extension and iphone Interface 6 weeks, 3 phases, 2 products, 1 client, design, implement - Presentation Date: Thursday June 18 - Authors: Mark Barkmeier
U III 5. networks & operating system o Several competing DOC standards OMG s CORBA, OpenDoc & Microsoft s ActiveX / DCOM. Object request broker (ORB)
U III 1 Design Processes Design Axioms Class Design Object Storage Object Interoperability Design Processes: - o During the design phase the classes identified in OOA must be revisited with a shift in
White paper FUJITSU Software Enterprise Postgres
White paper FUJITSU Software Enterprise Postgres Open Source Value, Enterprise Quality Strong growth in Database Management Systems (DBMSs) is expected to continue, making DBMS the largest single cost
Java EE Web Development Course Program
Java EE Web Development Course Program Part I Introduction to Programming 1. Introduction to programming. Compilers, interpreters, virtual machines. Primitive types, variables, basic operators, expressions,
WI005 - Offline data sync con SQLite in Universal Windows Platform
WI005 - Offline data sync con SQLite in Universal Windows Platform presenta Erica Barone Microsoft Technical Evangelist @_ericabarone [email protected] Massimo Bonanni Microsoft MVP, Intel Black Belt
CSCE 156H/RAIK 184H Assignment 4 - Project Phase III Database Design
CSCE 156H/RAIK 184H Assignment 4 - Project Phase III Database Design Dr. Chris Bourke Spring 2016 1 Introduction In the previous phase of this project, you built an application framework that modeled the
Database System Architecture & System Catalog Instructor: Mourad Benchikh Text Books: Elmasri & Navathe Chap. 17 Silberschatz & Korth Chap.
Database System Architecture & System Catalog Instructor: Mourad Benchikh Text Books: Elmasri & Navathe Chap. 17 Silberschatz & Korth Chap. 1 Oracle9i Documentation First-Semester 1427-1428 Definitions
2. Background on Data Management. Aspects of Data Management and an Overview of Solutions used in Engineering Applications
2. Background on Data Management Aspects of Data Management and an Overview of Solutions used in Engineering Applications Overview Basic Terms What is data, information, data management, a data model,
DocStore: Document Database for MySQL at Facebook. Peng Tian, Tian Xia 04/14/2015
DocStore: Document Database for MySQL at Facebook Peng Tian, Tian Xia 04/14/2015 Agenda Overview of DocStore Document: A new column type to store JSON New Built-in JSON functions Document Path: A intuitive
Object-Oriented Databases
Object-Oriented Databases based on Fundamentals of Database Systems Elmasri and Navathe Acknowledgement: Fariborz Farahmand Minor corrections/modifications made by H. Hakimzadeh, 2005 1 Outline Overview
Assignment 3 Version 2.0 Reactive NoSQL Due April 13
CS 635 Advanced OO Design and Programming Spring Semester, 2016 Assignment 3 2016, All Rights Reserved, SDSU & Roger Whitney San Diego State University -- This page last updated 4/2/16 Assignment 3 Version
Data sharing in the Big Data era
www.bsc.es Data sharing in the Big Data era Anna Queralt and Toni Cortes Storage System Research Group Introduction What ignited our research Different data models: persistent vs. non persistent New storage
Chapter 10 Practical Database Design Methodology and Use of UML Diagrams
Chapter 10 Practical Database Design Methodology and Use of UML Diagrams Copyright 2011 Pearson Education, Inc. Publishing as Pearson Addison-Wesley Chapter 10 Outline The Role of Information Systems in
Apple Certificate Library Functional Specification
Apple Certificate Library Functional Specification apple 2005-01-13 apple Apple Computer, Inc. 2005 Apple Computer, Inc. All rights reserved. No part of this publication may be reproduced, stored in a
CS 111 Classes I 1. Software Organization View to this point:
CS 111 Classes I 1 Software Organization View to this point: Data Objects and primitive types Primitive types operators (+, /,,*, %). int, float, double, char, boolean Memory location holds the data Objects
f...-. I enterprise Amazon SimpIeDB Developer Guide Scale your application's database on the cloud using Amazon SimpIeDB Prabhakar Chaganti Rich Helms
Amazon SimpIeDB Developer Guide Scale your application's database on the cloud using Amazon SimpIeDB Prabhakar Chaganti Rich Helms f...-. I enterprise 1 3 1 1 I ; i,acaessiouci' cxperhs;;- diotiilea PUBLISHING
COS 333: Advanced Programming Techniques
COS 333: Advanced Programming Techniques How to find me bwk@cs, www.cs.princeton.edu/~bwk 311 CS Building 609-258-2089 (but email is always better) TA's: Stephen Beard, Chris Monsanto, Srinivas Narayana,
How To Use An Informix System With A Computer System (For A Dba)
Open Source and Third Party Software Supporting Informix Ognjen Orel University Computing Centre, University of Zagreb, Croatia, EU 1 Who am I? Project manager, DBA, developer 16 years Informix experience
Commercial Database Software Development- A review.
Commercial Database Software Development- A review. A database software has wide applications. A database software is used in almost all the organizations. Over 15 years many tools have been developed
PERFORMANCE EVALUATION OF JAVA OBJECT-RELATIONAL MAPPING TOOLS HASEEB YOUSAF. (Under the Direction of John A. Miller)
PERFORMANCE EVALUATION OF JAVA OBJECT-RELATIONAL MAPPING TOOLS by HASEEB YOUSAF (Under the Direction of John A. Miller) ABSTRACT In the modern era of enterprise Web technology, there is strong competition
Programming Against Hybrid Databases with Java Handling SQL and NoSQL. Brian Hughes IBM
Programming Against Hybrid Databases with Java Handling SQL and NoSQL Brian Hughes IBM 1 Acknowledgements and Disclaimers Availability. References in this presentation to IBM products, programs, or services
Software Architecture Document
Software Architecture Document Project Management Cell 1.0 1 of 16 Abstract: This is a software architecture document for Project Management(PM ) cell. It identifies and explains important architectural
NoSQL replacement for SQLite (for Beatstream) Antti-Jussi Kovalainen Seminar OHJ-1860: NoSQL databases
NoSQL replacement for SQLite (for Beatstream) Antti-Jussi Kovalainen Seminar OHJ-1860: NoSQL databases Background Inspiration: postgresapp.com demo.beatstream.fi (modern desktop browsers without
Introduction to NoSQL Databases and MapReduce. Tore Risch Information Technology Uppsala University 2014-05-12
Introduction to NoSQL Databases and MapReduce Tore Risch Information Technology Uppsala University 2014-05-12 What is a NoSQL Database? 1. A key/value store Basic index manager, no complete query language
XXI. Object-Oriented Database Design
XXI. Object-Oriented Database Design Object-Oriented Database Management Systems (OODBMS) Distributed Information Systems and CORBA Designing Data Management Classes The Persistent Object Approach The
Table of Contents. Introduction: 2. Settings: 6. Archive Email: 9. Search Email: 12. Browse Email: 16. Schedule Archiving: 18
MailSteward Manual Page 1 Table of Contents Introduction: 2 Settings: 6 Archive Email: 9 Search Email: 12 Browse Email: 16 Schedule Archiving: 18 Add, Search, & View Tags: 20 Set Rules for Tagging or Excluding:
Database programming made easier Master thesis of Roland Balk
Database programming made easier Master thesis of Roland Balk [email protected], 4-1-2016 University of Twente, Formal Methods & Tools group Supervised by: L. Wevers Msc, prof. dr. M. Huisman and dr.
Relational Database Basics Review
Relational Database Basics Review IT 4153 Advanced Database J.G. Zheng Spring 2012 Overview Database approach Database system Relational model Database development 2 File Processing Approaches Based on
Object Relational Mapping for Database Integration
Object Relational Mapping for Database Integration Erico Neves, Ms.C. ([email protected]) State University of Amazonas UEA Laurindo Campos, Ph.D. ([email protected]) National Institute of Research
Comparing SQL and NOSQL databases
COSC 6397 Big Data Analytics Data Formats (II) HBase Edgar Gabriel Spring 2015 Comparing SQL and NOSQL databases Types Development History Data Storage Model SQL One type (SQL database) with minor variations
Database Master User Manual
Database Master User Manual Copyright by Nucleon Software Database Master is a product by Nucleon Software. Table of Contents 1 Welcome to Database Master... 4 1.1 Supported Database Systems & Connections...
SmartCart Design Description
SmartCart Design Description Version 1.0 Revision History Date Version Description Author 2011-10-20 0.1 Initial draft SmartCart Team 2011-24-10 0.8 Revised draft SmartCartTeam 2011-27-10 0.9 Revised draft
Databases and SQL. The Bioinformatics Lab SS 2013 - Wiki topic 10. Tikira Temu. 04. June 2013
Databases and SQL The Bioinformatics Lab SS 2013 - Wiki topic 10 Tikira Temu 04. June 2013 Outline 1 Database system (DBS) Definition DBS Definition DBMS Advantages of a DBMS Famous DBMS 2 Some facts about
sqlite driver manual
sqlite driver manual A libdbi driver using the SQLite embedded database engine Markus Hoenicka [email protected] sqlite driver manual: A libdbi driver using the SQLite embedded database engine
CSCI110 Exercise 4: Database - MySQL
CSCI110 Exercise 4: Database - MySQL The exercise This exercise is to be completed in the laboratory and your completed work is to be shown to the laboratory tutor. The work should be done in week-8 but
n Assignment 4 n Due Thursday 2/19 n Business paper draft n Due Tuesday 2/24 n Database Assignment 2 posted n Due Thursday 2/26
Class Announcements TIM 50 - Business Information Systems Lecture 14 Instructor: John Musacchio UC Santa Cruz n Assignment 4 n Due Thursday 2/19 n Business paper draft n Due Tuesday 2/24 n Database Assignment
Getting Started with MongoDB
Getting Started with MongoDB TCF IT Professional Conference March 14, 2014 Michael P. Redlich @mpredli about.me/mpredli/ 1 1 Who s Mike? BS in CS from Petrochemical Research Organization Ai-Logix, Inc.
Using UML to Model Relational Database Operations
Using UML to Model Relational Database Operations Eunjee Song Shuxin Yin Indrakshi Ray Computer Science Department Colorado State University Fort Collins, CO 80523, USA Email: song, yin, iray @cs.colostate.edu
Lag Sucks! R.J. Lorimer Director of Platform Engineering Electrotank, Inc. Robert Greene Vice President of Technology Versant Corporation
Lag Sucks! Making Online Gaming Faster with NoSQL (and without Breaking the Bank) R.J. Lorimer Director of Platform Engineering Electrotank, Inc. Robert Greene Vice President of Technology Versant Corporation
Introduction. Introduction: Database management system. Introduction: DBS concepts & architecture. Introduction: DBS versus File system
Introduction: management system Introduction s vs. files Basic concepts Brief history of databases Architectures & languages System User / Programmer Application program Software to process queries Software
Services. Relational. Databases & JDBC. Today. Relational. Databases SQL JDBC. Next Time. Services. Relational. Databases & JDBC. Today.
& & 1 & 2 Lecture #7 2008 3 Terminology Structure & & Database server software referred to as Database Management Systems (DBMS) Database schemas describe database structure Data ordered in tables, rows
3 Techniques for Database Scalability with Hibernate. Geert Bevin - @gbevin - SpringOne 2009
3 Techniques for Database Scalability with Hibernate Geert Bevin - @gbevin - SpringOne 2009 Goals Learn when to use second level cache Learn when to detach your conversations Learn about alternatives to
CS352 Lecture - Object-Based Databases
CS352 Lecture - Object-Based Databases Objectives: Last revised 10/7/08 1. To elucidate fundamental differences between OO and the relational model 2. To introduce the idea of adding persistence to an
