adbms ppt of c++ binding and ppl

19
Persistent Programming Languages AND C++ Language Binding Palak Raina(C-44) Supriya Nakkalwar(C-33)

Upload: prutha-tikale

Post on 18-Feb-2015

33 views

Category:

Documents


5 download

DESCRIPTION

This ppt presentation will give you an idea for C++ binding in Advance Database Management System

TRANSCRIPT

Page 1: Adbms Ppt of c++ Binding and Ppl

Persistent Programming Languages ANDC++ Language Binding

Palak Raina(C-44)Supriya Nakkalwar(C-33)

Page 2: Adbms Ppt of c++ Binding and Ppl

PERSISTENT PROGRAMMING LANGUAGES

Page 3: Adbms Ppt of c++ Binding and Ppl

Persistence of Objects

Page 4: Adbms Ppt of c++ Binding and Ppl

Object Identity and Pointers

Page 5: Adbms Ppt of c++ Binding and Ppl

CONTD..

Page 6: Adbms Ppt of c++ Binding and Ppl

Persistent C++ Systems

Page 7: Adbms Ppt of c++ Binding and Ppl

Persistent C++ ODL: Exampleclass Branch : public d_Object {….}class Person : public d_Object {public:d_String name; // should not use String!d_String address;};class Account : public d_Object {private:d_Long balance;public:d_Long number;d_Set <d_Ref<Customer>> owners;int find_balance();int update_balance(int delta);};

Page 8: Adbms Ppt of c++ Binding and Ppl

Persistent Java Systems

Page 9: Adbms Ppt of c++ Binding and Ppl

Contd…

Page 10: Adbms Ppt of c++ Binding and Ppl

C++ Language Binding

Page 11: Adbms Ppt of c++ Binding and Ppl
Page 12: Adbms Ppt of c++ Binding and Ppl

•d_ref<professor> profp•d_ref<department> deptref•profp_->grant_tenure()•Deptref=Profp->dept

Page 13: Adbms Ppt of c++ Binding and Ppl
Page 14: Adbms Ppt of c++ Binding and Ppl

A template class is specified for each type of collection:

D_Set<T> D_List<T> D_Bag<T> D_Varray<T> D_Dictionary<T>

Example 1: D_Set<D_Ref<STUDENT>>

Example 2: D_Set<string>

Page 15: Adbms Ppt of c++ Binding and Ppl
Page 16: Adbms Ppt of c++ Binding and Ppl
Page 17: Adbms Ppt of c++ Binding and Ppl

Data Types of Attributes

Page 18: Adbms Ppt of c++ Binding and Ppl
Page 19: Adbms Ppt of c++ Binding and Ppl