Database
strix.txt
Associated article: The Strix Object Persistence Engine
Tags: Database
Published source code accompanying the article by Cesar A. Gonzalez Perez in which he presents Strix, a software layer that works between an application and the relational database back end, interfaces relational databases with object-oriented programming languages.
The Strix Object Persistence Engine
by Cesar A. Gonzalez Perez
Listing One
system Test {Verdewek/Test}
enum EProjectType
InformationSystem
Component:
COMServer
ActiveXControl
.
WebSite
end
class Person abstract
attribute Name: 1 String 40
attribute Address: String 200
end
class Customer
isa Person
attribute Code: 1 ...


