Introduction to Object-Oriented Databases

Total Page:16

File Type:pdf, Size:1020Kb

Introduction to Object-Oriented Databases Lecture 2 Introduction to Object-oriented Databases Dr Goran Nenadic MSS/H10 School of Informatics, University of Manchester 1 Aims Understand the need for object oriented DBs Learn basic concepts and principles Learn the basics of ODL and OQL Understand advantages and disadvantages of object databases 2 Plan Overview of object-oriented methodology Object model (ODMG) Object definition language (ODL) Object query language (OQL) Object and object-relational DBs 3 CN3023, Databases 3, 2005/2006, School of Informatics 1 Problems with relational DBs focused on traditional business applications limited data types and operators £ limited data abstraction ¢ definition of additional specific types and operators is not straightforward £ need to be embedded in application programs ¢ insulation between data and operations 4 continued Problems with relational DBs ¢ integration with OO languages £ storage of complex objects from a Java program is not straightforward ¢ need for £ abstract data types £ encapsulation of operations £ inheritance £ better integration with programming languages 5 OODBs œ introduction ¢ Integration of two technologies: OO programming and DBs ¢ Main ideas £ raise the level of abstraction £ provide direct —correspondence“ between real-world and database objects ¢ objects do not lose their integrity and identity and can easily be identified and operated upon 6 CN3023, Databases 3, 2005/2006, School of Informatics 2 OODBs œ objects An object belongs to a specific class Have structure, state (value), behavior (operations), identity, name(s) Object structure of arbitrary complexity £ in order to contain all of the necessary information ¢ Contrast to traditional database systems £ information about a complex object is often scattered over many relations or records, leading to loss of direct correspondence between a real-world object and its database representation 7 OODBs œ operations ¢ Applied to objects of a particular type £ includes non-standard application-specific operations ¢ Operations can be invoked by passing a message to an object £ includes the operation name and the parameters ¢ Operator polymorphism/overloading £ ability to be applied to different types of objects £ operation name may refer to several distinct implementations, depending on the type of objects it is applied to 8 Brief overview of OO concepts ¢ Classes and objects ¢ Object identity ¢ Encapsulation and information hiding ¢ Inheritance ¢ Polymorphism 9 CN3023, Databases 3, 2005/2006, School of Informatics 3 Classes and objects A class is a construct used to describe the structure of objects generated from the class £ can be an abstract data type equipped with a possible partial implementation ¢ An object is an instance of a class ¢ Note £ some languages make distinction between types (data types) and classes (collections) 10 Object identity (OID) ¢ An object has an existence and identity independent of its value £ Object Identity (OID) is unique £ not visible to the users, but used internally to identify each object ¢ Note £ there are also values, which do not have OIDs £ values cannot be referenced (e.g. constants) 11 Type constructors ¢ Used to construct state (current value) of a complex object from other objects ¢ object = (OID, type constructor, current state) ¢ Basic constructors £ atom: represent all basic atomic values (numbers, strings, Booleans, etc) £ tuple (i.e. struct) £ collection types: set, list, bag, array 12 CN3023, Databases 3, 2005/2006, School of Informatics 4 Type constructors œ example Student (OiD3, tuple<name:OiD1, student-id: OiD2>) name (OiD1, atom, John) student-id (OiD2, atom, S007) Note: identicalobject states vs. equalobject states (reference) (value) name (OiD4, atom, John) 13 Encapsulation Define the behavior of objects based on the operations that can be externally applied to them £ internal structure of objects is hidden ¢ Encapsulation: separation of the objects of a class from anything outside of the class £ information hiding ¢ Stipulate a public interface to a class and hide the —secrets“ in the private part 14 continued Encapsulation ¢ Public interface is a collection of signaturesof the functions provided by a class £ signature specifies the operation‘s name, parameters, and return value class £ implementation (method) of operations is hidden ¢ Objects of a class can only be used through the public interface of the class £ an object is known to the outside world by its name and signatures published in its public interface 15 CN3023, Databases 3, 2005/2006, School of Informatics 5 continued Encapsulation Visible and hidden attributes and methods £ hidden attributes completely encapsulated and can be accessed only through methods ¢ Update is a typical encapsulated method £ create, delete, update ¢ Benefits £ implementations of class functions can be changed without affecting the clients who use the class functions 16 Inheritance ¢ Class hierarchy £ definition of new class based on previously defined ones £ e.g. PERSON: Name, Address, Birthdate, Age ¢ Subtype/supertype £ a new type that is similar but not identical to an already defined type £ STUDENT subtype-of PERSON: Program, Average 17 continued Inheritance ¢ Single inheritance £ each type has a single supertype £ type hierarchy is a tree ¢ Multiple inheritance £ types can have multiple supertypes £ problems: name conflicts, semantics, exception handling ¢ Inheritance can be used to support abstraction and code reusage 18 CN3023, Databases 3, 2005/2006, School of Informatics 6 Polymorphism Operator overloading £ the same operator name or symbol bound to two or more different implementations of the operator, depending on the type of objects to which the operator is applied £ example: operator ”+‘ for numbers, strings, sets ¢ Binding of an object to a function £ static (early): during the compile time £ dynamic (or late or runtime) otherwise ¢ power of dynamic binding is that an object can have a dynamic form whose functions can be determined at runtime 19 OODB standards, m odelsand languages 20 W hy OO standards? ¢ One of the reasons for success of the relational database paradigm was the SQL standard £ portability, interoperability ¢ Object Data Management Group proposed a standard ODMG that includes £ Object Model (OM) £ Object Definition Language (ODL) £ Object Query language (OQL) £ programming language bindings 21 CN3023, Databases 3, 2005/2006, School of Informatics 7 Note: ODMG The ODMG is a non-profit consortium of database vendors and interested parties who collaborated to define data storage portability standards for object-oriented applications. Since its inception in 1991, the ODMG has continued to grow and today includes database vendors, tool vendors, consulting firms, and corporate end users. Member companies include Advanced Language Technologies, Andersen Consulting, Ardent Software, Baan, CERN, Computer Associates, Ericsson, GemStone Systems, Hitachi, IBEX Computing SA, JavaSoftSunMicrosystems, Lockheed Martin, Microsoft, NEC Corporation, Object Design, The Object People, Objectivity, POET Software, Sybase, Telenor R&D, Versant Object Technology, and W atershed Technologies. The ODMG group completed its work on object data management standards in 2001 and was disbanded. The final release of the ODMG standard (ODMG 3.0, including the overall data model) can be found at http://www.odmg.org 22 ODMG object model Provides a standard data model for object databases Supports object definition via ODL Supports object querying via OQL Supports a variety of data types and type constructors 23 continued ODMG object model basic concepts £objects ¢ collections ¢ atomic objects (user-defined) £literals £interface £class £extent, key, factory objects 24 CN3023, Databases 3, 2005/2006, School of Informatics 8 ODMG objects Object has four characteristics £ identifier: unique system-wide identifier £ nam e: unique within a particular database and/or program; [optional] £ lifetim e: persistent vs. transient £ structure: specifies how object is constructed by the type constructor and whether it is ¢ collection object ¢ atom icobject 25 ODMG built-in collections ¢ Set œ unordered collection that does not allow duplicates ¢ Bag œ unordered collection that allows duplicates ¢ List œ ordered collection that allows duplicates ¢ Arrayœ one-dimensional array of dynamically varying length, with direct access ¢ Dictionaryœ unordered sequence of key-value pairs with no duplicate keys Notes: 1) all objects in a collection must be of the same type 2) OM defines built-in interfaces for each collection (see later) 26 ODMG atomic objects ¢ Any object that is not a collection £ typically structured complex objects, such as tuples (struct) ¢ Contains £ properties: attributes and relationships £ operations ¢ Attribute values can be literals or OIDs ¢ Note £ atomic objects are defined via keyword classin ODL (see later) 27 CN3023, Databases 3, 2005/2006, School of Informatics 9 ODMG literals Literal has a current value but not an identifier £ embedded in objects ¢ Three types of literals £ atom ic: basic (predefined) data type values (e.g., short, float, boolean, char) £ structured: values that are constructed by type constructors (e.g., date, time, struct variables) £ collection: a collection (e.g., set, array) of values or objects 28 ODMG interfaces ¢ An interface describes visible attributes, relationships and operations £ it is a specification of the abstract behaviour (operation signatures) of an object type ¢ Used to specify abstract
Recommended publications
  • 20140620075114!12305
    Enhancement of Open Source Monitoring Tool for Small Footprint Databases Dissertation Submitted in partial fulfillment of the requirements for the degree of Master of Technology in Computer Science and Engineering Submitted by Sukh Deo Roll No. 123050061 Under the Guidance of Prof. Deepak B. Phatak Department of Computer Science and Engineering Indian Institute of Technology Bombay Powai, Mumbai, India 400076 June, 2014 Dissertation Approval Certificate Department of Computer Science and Engineering Indian Institute of Technology, Bombay The dissertation entitled \Enhancement of Open Source Monitoring Tool for Small Footprint Databases", submitted by Sukh Deo (Roll No: 123050061) is approved for the degree of Master of Technology in Computer Science and Engineering from Indian Institute of Technology, Bombay. Prof. Deepak B. Phatak Dept. of CSE, IIT Bombay Supervisor Internal Examiner External Examiner Place: IIT Bombay, Mumbai Date: June, 2014 Declaration I declare that this written submission represents my ideas in my own words and where other's ideas or words have been included, I have adequately cited and referenced the original sources. I also declare that I have adhered to all principles of academic honesty and integrity and have not misrepresented or fabricated or falsified any idea/data/fact/source in my submission. I un- derstand that any violation of the above will be cause for disciplinary action by the Institute and can also evoke penal action from the sources which have thus not been properly cited or from whom proper permission has not been taken when needed. Signature Name of Student Roll number Date 3 Acknowledgement I would like to thank my guide, Prof.
    [Show full text]
  • LIST of NOSQL DATABASES [Currently 150]
    Your Ultimate Guide to the Non - Relational Universe! [the best selected nosql link Archive in the web] ...never miss a conceptual article again... News Feed covering all changes here! NoSQL DEFINITION: Next Generation Databases mostly addressing some of the points: being non-relational, distributed, open-source and horizontally scalable. The original intention has been modern web-scale databases. The movement began early 2009 and is growing rapidly. Often more characteristics apply such as: schema-free, easy replication support, simple API, eventually consistent / BASE (not ACID), a huge amount of data and more. So the misleading term "nosql" (the community now translates it mostly with "not only sql") should be seen as an alias to something like the definition above. [based on 7 sources, 14 constructive feedback emails (thanks!) and 1 disliking comment . Agree / Disagree? Tell me so! By the way: this is a strong definition and it is out there here since 2009!] LIST OF NOSQL DATABASES [currently 150] Core NoSQL Systems: [Mostly originated out of a Web 2.0 need] Wide Column Store / Column Families Hadoop / HBase API: Java / any writer, Protocol: any write call, Query Method: MapReduce Java / any exec, Replication: HDFS Replication, Written in: Java, Concurrency: ?, Misc: Links: 3 Books [1, 2, 3] Cassandra massively scalable, partitioned row store, masterless architecture, linear scale performance, no single points of failure, read/write support across multiple data centers & cloud availability zones. API / Query Method: CQL and Thrift, replication: peer-to-peer, written in: Java, Concurrency: tunable consistency, Misc: built-in data compression, MapReduce support, primary/secondary indexes, security features.
    [Show full text]
  • Mobile Application Development Quick Start Guide
    AT&T Developer Program Mobile Application Development Quick Start Guide White Paper Revision 1.1 Revision Date 3/13/2008 © 2008 AT&T Knowledge Ventures This document and the information contained herein (collectively, the "Information") is provided to you (both the individual receiving this document and any legal entity on behalf of which such individual is acting) ("You" and "Your") by AT&T, on behalf of itself and its affiliates ("AT&T") for informational purposes only. AT&T is providing the Information to You because AT&T believes the Information may be useful to You. The Information is provided to You solely on the basis that You will be responsible for making Your own assessments of the Information and are advised to verify all representations, statements and information before using or relying upon any of the Information. Although AT&T has exercised reasonable care in providing the Information to You, AT&T does not warrant the accuracy of the Information and is not responsible for any damages arising from Your use of or reliance upon the Information. You further understand and agree that AT&T in no way represents, and You in no way rely on a belief, that AT&T is providing the Information in accordance with any standard or service (routine, customary or otherwise) related to the consulting, services, hardware or software industries. AT&T DOES NOT WARRANT THAT THE INFORMATION IS ERROR-FREE. AT&T IS PROVIDING THE INFORMATION TO YOU "AS IS" AND "WITH ALL FAULTS." AT&T DOES NOT WARRANT, BY VIRTUE OF THIS DOCUMENT, OR BY ANY COURSE OF PERFORMANCE, COURSE OF DEALING, USAGE OF TRADE OR ANY COLLATERAL DOCUMENT HEREUNDER OR OTHERWISE, AND HEREBY EXPRESSLY DISCLAIMS, ANY REPRESENTATION OR WARRANTY OF ANY KIND WITH RESPECT TO THE INFORMATION, INCLUDING, WITHOUT LIMITATION, ANY REPRESENTATION OR WARRANTY OF DESIGN, PERFORMANCE, MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT, OR ANY REPRESENTATION OR WARRANTY THAT THE INFORMATION IS APPLICABLE TO OR INTEROPERABLE WITH ANY SYSTEM, DATA, HARDWARE OR SOFTWARE OF ANY KIND.
    [Show full text]
  • Enhancement of the Performance of Monitoring Tool for Small Footprint
    Enhancement of The Performance of Monitoring Tool for Small Footprint Databases MTP Stage-I Report Submitted in partial fulfillment of the requirements for degree of Master of Technology Under guidance of Prof. Deepak B. Phatak Submitted By Sukh deo Rolla No: 123050061 Department of Computer Science and Engineering Indian Institute of Technology Bombay, Mumbai 1 Acknowledgement I would like to extremely thanks my guide, Prof. Deepak B. Phatak, for the consistent directions and guidance throughout the project. Because of his consistent encouragement and right directions, we are able to do this project work. I would like to thanks Mr. Nagesh Karmali for his continuous inputs in my work. I would also like to thank every one else who supported me in this work. 2 Abstract Nowadays, mobile devices are not only use for basic purpose like call, but many different purpose and different applications. We can say mobile de- vices are sibling of personal computers. Mobile device usage patterns are very different as compared to conventional PCs, as the devices are targeted for general users. Mobile devices have some great features, e.g., light weight and efficiency, but it has some drawback like small memory and battery is- sues. Peoples want to use many applications, due to growing the number of purposes, but it challenges to manage the many application in mobile device. Performance of mobile device depends on how to managing our applications and its data. There is a need to measure the performance of various com- monly used applications. Our work start with simple question: does storage affect the performance of mobile device? What kinds of database requires for mobile device? What are the parameter to measure the performance of databases? How to measure the performance of mobile device and its possible tools.
    [Show full text]
  • Testování Embedded Databázových Systémů Benchmarking of Embedded Database Systems
    VŠB – Technická univerzita Ostrava Fakulta elektrotechniky a informatiky Katedra informatiky Testování embedded databázových systémů Benchmarking of Embedded Database Systems 2018 David Tabor Rád bych na tomto místě poděkoval vedoucímu bakalářské práce Ing. Petrovi Chovancovi, Ph. D. za odborné vedení a pomoc při realizaci této práce. Abstrakt Cílem této bakalářské práce je vytvořit univerzální testovací rozhraní pro měření výkonu em- bedded databázových systémů v závilosti na zvoleném indexu, čili datové struktuře. Testo- vací rozhraní bude navrženo tak, aby jej bylo možno jednoduchou implementací doplnit o další embedded databázové systémy. Testy budou probíhat nad zvolenými embedded databázovými systémy, zvolenou datovou strukturou a kolekcí dat, která bude generována nebo nahrána z ex- terního souboru a budou uživatele informovat prodstřednictvím webového rozhraní o stavu a průběhu. Historie testů bude ukládána v lokální databázi pro následné vyhodnocení. Klíčová slova: Embedded databázové systémy, RadegastDB, SQLite, MySQL, Firebird SQL, SQL CE, Sekvenční pole (Halda), B-strom, R-strom, Hašovací tabulka Abstract The aim of this bachelor thesis is to create a universal test interface for measuring the perfor- mance of embedded database systems depending on the selected index, i.e. the data structure. The test interface will be designed to be complemented with other embedded database systems by simple implementation. Tests will run over selected embedded database systems, a selected data structure and a data collection that will be generated or loaded from an external file and will inform users via the web interface about status and progress. The history of the tests will be stored in a local database for subsequent evaluation. Key Words: Embedded database systems, RadegastDB, SQLite, MySQL, Firebird SQL, SQL CE, Sequential array (Heap), B-tree, R-tree, Hash table Obsah Seznam použitých zkratek a symbolů 9 Seznam obrázků 10 Seznam tabulek 11 1 Úvod 12 2 Datové struktury RadegastDB 13 2.1 Sekvenční pole .
    [Show full text]
  • Autonomous Horizons: the Way Forward Is a Product of the Office Air University Press 600 Chennault Circle, Bldg 1405 of the US Air Force Chief Scientist (AF/ST)
    Autonomous Horizons The Way Forward A vision for Air Force senior leaders of the potential for autonomous systems, and a general framework for the science and technology community to advance the state of the art Dr. Greg L. Zacharias Chief Scientist of the United States Air Force 2015–2018 The second volume in a series introduced by: Autonomous Horizons: Autonomy in the Air Force – A Path to the Future, Volume 1: Human Autonomy Teaming (AF/ST TR 15-01) March 2019 Air University Press Curtis E. LeMay Center for Doctrine Development and Education Maxwell AFB, Alabama Chief of Staff, US Air Force Library of Congress Cataloging-in-Publication Data Gen David L. Goldfein Names: Zacharias, Greg, author. | Air University (U.S.). Press, publisher. Commander, Air Education and Training | United States. Department of Defense. United States Air Force. Command Title: Autonomous horizons : the way forward / by Dr. Greg L. Zacha- Lt Gen Steven L. Kwast rias. Description: First edition. | Maxwell Air Force Base, AL : AU Press, 2019. “Chief Scientist for the United States Air Force.” | Commander and President, Air University Lt Gen Anthony J. Cotton “January 2019.” |Includes bibliographical references. Identifiers: LCCN 2018061682 | ISBN 9781585662876 Commander, Curtis E. LeMay Center for Subjects: LCSH: Aeronautics, Military—Research—United States. | Doctrine Development and Education United States. Air Force—Automation. | Artificial intelligence— Maj Gen Michael D. Rothstein Military applications—United States. | Intelligent control systems. | Autonomic
    [Show full text]
  • 2007 Javaonesm Conference Word “BENEFIT” Is in Green Instead of Orange
    there are 3 cover versions: Prospect 1 (Java) It should say “... Save $200!” on the front and back cover. The first early bird pricing on the IFC and IBC should be “$2,495”, and the word “BENEFIT” is in orange. ADVANCE CONFERENCE GUIDE Prospect 2 (Non-Java) The front cover photo and text is different from Prospect 1. The text of the introduction Last Chance to Save $200! Register by April 4, 2007, at java.sun.com/javaone paragraphs on the IFC is also different, the 2007 JavaOneSM Conference word “BENEFIT” is in green instead of orange. Features Java Technology, Open Source, Web 2.0, Emerging Technologies, and More Don’t miss this year’s newly expanded content. Advance your development skills with hundreds of expert-led, in-depth technical sessions in nine tracks over four days: The back cover and the IBC are the same as Consumer Technologies | Java™ SE | Desktop | Java EE | Java ME Prospect 1. The Next-Generation Web | Open Source | Services and Integration | Tools and Languages How to navigate this brochure and easily find what you need... Alumni For other information for Home Conference Overview JavaOnePavilion this year’s Conference, visit java.sun.com/javaone. It should say “... Save $300!” on the front Registration Conference-at-a-Glance Special Programs and back cover. The first early bird pricing on Hyperlinks Bookmark Buttons Search Click on any of the underlined Use the bookmark tab to Click on the buttons at the top Pull down from the Edit menu and the IFC and IBC should be “$2,395”, and the links to visit specific web sites.
    [Show full text]
  • Embedded Database for Remote Process Management System
    Embedded Database for Remote Process Management System {tag} {/tag} IJCA Proceedings on International Conference on Emerging Frontiers in Technology for Rural Area (EFITRA-2012) © 2012 by IJCA Journal EFITRA - Number 4 Year of Publication: 2012 Authors: Kalyani N. Satone Madhuri M . Pal {bibtex}efitra1030.bib{/bibtex} Abstract This paper investigates embedded databases for the MicroBaseJ project. The paper aims at the development of an integrated database and a user interface for a typical 3G mobile phone with Java MIDP2 capability. One of the key objectives is to target a generic solution. A number of commercial sectors could benefit from this solution such as horticulture, building management, pollution/water management, industry etc. Four embedded databases based on J2ME have been investigated. Two of the four have been evaluated and analyzed. The size of processed data is limited to 20000 records when using the wireless toolkit simulator and 11000 records when using a mobile phone. 1 / 3 Embedded Database for Remote Process Management System Refer ences - Mobile and World, &quot;Subscriber statistics end Q1 2007,&quot; 2007. - S. Ravi, M. Chathish, and H. Prasanna, &quot;WAP AND SMS BASED EMERGING TECHNIQUES FOR REMOTEMONITORING AND CONTROL OF A PROCESS PLANT,&quot; in ICSP&apos;04. 2004 7th International Conference, 2004, pp. 2672-2675. - K. Hung and Y. Zhang, &quot;Implementation of a WAP-Based Telemedicine System for Patient Monitoring,&quot; Information Technology in Biomedicine, vol. IEEE Transations on vol. 7, pp. 101-107, June 2003. - M. Nikolova, F. Meijs, and P. Voorwinden, &quot;Remote Mobile Control of Home appliances,&quot; Consumer Electronis, vol.
    [Show full text]
  • © 2011 by the 451 Group. All Rights Reserved Nosql, Newsql and Beyond Open Source Driving Innovation in Distributed Data Management
    © 2011 by The 451 Group. All rights reserved NoSQL, NewSQL and Beyond Open Source Driving Innovation in Distributed Data Management Matt hew As lett, The 451 Group [email protected] © 2011 by The 451 Group. All rights reserved Overview – Open source impact in the database market – NoSQL and NewSQL databases • Adoption/development drivers • Use cases – And beyond • Data grid/cache • Cloud databases • Total data © 2011 by The 451 Group. All rights reserved 451 Research is focused on the business of enterprise IT innovation. The company’s analysts provide critical and timely insight into the competitive dynamics of innovation in emerging technology segments. The 451 Group Tier1 Research is a single‐source research and advisory firm covering the multi‐tenant datacenter, hosting, IT and cloud‐computing sectors, blending the best of industry and financial research. The Uptime Institute is ‘The Global Data Center Authority’ and a pioneer in the creation and facilitation of end‐user knowledge communities to improve reliability and uninterruptible availability in datacenter facilities. TheInfoPro is a leading IT advisory and research firm that provides real‐world ppperspectives on the customer and market dynamics of the TOTAL DATA enterprise information technology landscape, harnessing the collective knowledge and insight of leading IT organizations worldwide. ChangeWave Research is a research firm that identifies and quantifies ‘change’ in consumer spending behavior, corporate purchasing, and industry, company and technology trends. © 2011 by The 451 Group. All rights reserved Coverage areas – Senior analyst, enterprise software – Commercial Adoption of Open Source (CAOS) • Adoption by enterprises • Adoption by vendors – Information Management • Databases • Data warehousing • Data caching © 2011 by The 451 Group.
    [Show full text]
  • Obinject: a Noodmg Persistence and Indexing Framework for Object Injection
    ObInject: a NoODMG Persistence and Indexing Framework for Object Injection Luiz O. Carvalho1;2, Thatyana F. P. Seraphim1, Caetano Traina J´unior2, Enzo Seraphim1;∗ 1 Universidade Federal de Itajub´a,Brazil 2 Universidade de S~aoPaulo, Brazil [email protected], [email protected], [email protected], [email protected] Abstract. The object-oriented model has become standard for developing information systems. Consequently, more and more classes have been created to embed business rules and are been instantiated several times, generating a huge amount of objects. In several scenarios, objects must change their state from transient to persistent. Thus, several solutions have been created to meet this need for persistence. Many solutions use frameworks to perform the mapping from objects to relations in database schemas. However, few object persistence frameworks pursue efficiency as a target, for example dealing with index structures like B-Tree, M-Tree and R-Tree simultaneously. This article presents ObInject, a NoODMG framework to support object persistence and indexing (www.obinject.org). Its main feature is to allow objects to be persisted and indexed into any data structure. The framework is divided into four modules based on Design Patterns and provides abstractions for persistence and indexing controllers that are specialized from the user class. We performed extensive experiments evaluating several of its properties and target abstractions, and show that it allows the implementation to achieve significant performance improvements in relation to the existing alternatives. Categories and Subject Descriptors: H.3 [Information Storage and Retrieval]: Information Search and Retrieval; E.2 [Data Storage Representation]: Object representation Keywords: framework, indexing, noODMG, persistence 1.
    [Show full text]
  • About Button, 20 About.Xaml, 28, 74 Aboutview.Xaml, 84–85 Acceptsreturn Property, 202 Acrord32.Exe, 426 Actions Configuring Tr
    Index App class, 28–29 A App.xaml, 28–29, 258, 261, 274 App.xaml.cs, 311 About button, 20 App_Data folder, 21 About.xaml, 28, 74 AppendAllLines method, 470 AboutView.xaml, 84–85 AppendAllText method, 470 AcceptsReturn property, 202 AppendText method, 470 AcroRd32.exe, 426 application dashboards, 404 actions application deployment configuring triggers and actions using adding display content to the pre-loader, Expression Blend, 291 497 creating custom actions, 295 Application_Startup event handler how triggers and actions interact, 291 method, 501 implementing triggers and actions by AppManifest.xaml, 504 hand, 292 AppPreloader.xaml, 496 Microsoft.Expression.Interactions.dll Build Action property, 501 assembly, 291 building a client desktop installer, 494 SubmitChanges method, 291 configuring the application pre-loader in System.Windows.Interactivity.dll the HTML file, 500 assembly, 290 creating a setup program, 488 TargetedTriggerAction, 295 creating a web package, 487 TriggerAction, 295 creating the application pre-loader, 496 using predefined triggers and actions, creating the application pre-loader, 290 XAML code listing, 498 See also triggers customizing and personalizing the Activate method, 434 Silverlight installation experience, Active state, 355 490 Add method, 212 default Silverlight installation process, AddNewItem method, 200 489 Adobe Flash, 4, 11 deploying an application to a client, 488 Adobe Reader plug-in, 404 deploying the server and client Adventure Works Cycles, 101 components to the server, 483 AdventureWorks2008
    [Show full text]
  • Mobile Phone Based Remote Monitoring System
    Mobile Phone based Remote Monitoring System by Danyi Liu A Thesis Submitted in Fulfilment of the Degree of Master of Engineering Auckland University of Technology Auckland June 2008 Acknowledgements I wish to express my gratitude to my supervisor, Professor Adnan Al-Anbuky, for his ongoing guidance, his patience, his excellent advice, and most of all his kind understanding. His high expectations of me encouraged me to perform the best that I could and I respect him for that. I would also like to express my gratitude to Dr. Lin Chen, who had been my co- supervisor for one semester, for his patience and his good advice. I would also like to thank Murray McGovern at Mobile Control Solutions Ltd for his technical and project support. His help has been very valuable. Thanks also to Mr. Hong Zhang at MCS and to Sean Tindle, both of whom tolerated me and aided me in my quest so supportively. Thanks to David Parker for his proof reading of my work and his advice. I appreciate also, so much, my family’s interest and encouragement, without which I would not have had this opportunity. i Abstract This thesis investigates embedded databases and graphical interfaces for the MicroBaseJ project. The project aim is the development of an integrated database and GUI user interface for a typical 3G, or 2.5G, mobile phone with Java MIDP2 capability. This includes methods for data acquisition, mobile data and information communication, data management, and remote user interface. Support of phone delivered informatics will require integrated server and networking infrastructure research and development to support effective and timely delivery of data for incorporation in mobile device-based informatics applications.
    [Show full text]