The GNUstep Database Library 2 (GDL2) is a set of libraries to map Objective-C objects to rows of relational database management systems (RDBMS). It aims to be compatible with Enterprise Objects Framework (EOF) as released with WebObjects 4.5 from Apple Inc.
Find a file
David Ayers 7331d77528 * EOAdaptors/Postgres95/GNUmakefile.in:
Install into GNUSTEP_SYSTEM_ROOT by default.

	* * Update email addresses for Mirko Viviani and David Ayers.


git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gdl2/trunk@23510 72102866-910b-0410-8b05-ffd578937521
2006-09-14 16:06:21 +00:00
config * config.h.in (HAVE_DECL_PQFREEMEM, HAVE_DECL_PQUNESCAPEBYTEA): 2004-09-09 10:40:50 +00:00
DBModeler * EOInterface/GNUmakefile 2006-09-14 11:58:24 +00:00
EOAccess * EOAdaptors/Postgres95/GNUmakefile.in: 2006-09-14 16:06:21 +00:00
EOAdaptors * EOAdaptors/Postgres95/GNUmakefile.in: 2006-09-14 16:06:21 +00:00
EOControl * EOAdaptors/Postgres95/GNUmakefile.in: 2006-09-14 16:06:21 +00:00
EOInterface * EOAdaptors/Postgres95/GNUmakefile.in: 2006-09-14 16:06:21 +00:00
EOModeler * EOAdaptors/Postgres95/GNUmakefile.in: 2006-09-14 16:06:21 +00:00
GDL2Palette * EOInterface/GNUmakefile 2006-09-14 11:58:24 +00:00
Tools * EOAdaptors/Postgres95/GNUmakefile.in: 2006-09-14 16:06:21 +00:00
ANNOUNCE * Version 0.10.1 2006-09-14 12:10:39 +00:00
AUTHORS * EOAdaptors/Postgres95/GNUmakefile.in: 2006-09-14 16:06:21 +00:00
ChangeLog * EOAdaptors/Postgres95/GNUmakefile.in: 2006-09-14 16:06:21 +00:00
config.h.in * EOAdaptors/Postgres95/GNUmakefile.in: 2006-09-14 16:06:21 +00:00
config.make.in * configure.ac (gorm-palette): Add configure option to exclude 2006-09-05 20:42:03 +00:00
configure * configure.ac (gorm-palette): Add configure option to exclude 2006-09-05 20:42:03 +00:00
configure.ac * EOAdaptors/Postgres95/GNUmakefile.in: 2006-09-14 16:06:21 +00:00
COPYING.LIB * COPYING.LIB: Update to LGPL 2.1. 2005-08-17 08:07:57 +00:00
GDL2.gsdoc * EOAdaptors/Postgres95/GNUmakefile.in: 2006-09-14 16:06:21 +00:00
gdl2.make.in * EOAdaptors/Postgres95/GNUmakefile.in: 2006-09-14 16:06:21 +00:00
GNUmakefile * Version: Update to 0.10.0 2006-09-12 09:48:23 +00:00
INSTALL * README: New file. 2004-04-21 16:52:01 +00:00
Makefile.postamble * configure.ac (gorm-palette): Add configure option to exclude 2006-09-05 20:42:03 +00:00
NEWS * EOAdaptors/Postgres95/GNUmakefile.in: 2006-09-14 16:06:21 +00:00
README * Version 0.10.1 2006-09-14 12:10:39 +00:00
TODO * EOAccess/EOAccessFault.m: Include privat headers locally. 2004-07-23 18:33:29 +00:00
Version * Version 0.10.1 2006-09-14 12:10:39 +00:00

Readme
******

The GNUstep Database Library 2 (GDL2) is a set of libraries to map
Objective-C objects to rows of relational database management systems
(RDBMS).  It aims to be compatible with Enterprise Objects Framework
(EOF) as released with WebObjects 4.5 from Apple Inc.  It requires 
- the GNUstep Make Package 1.13.0
- the Base Package 1.13.0
- the GUI Package 1.11.0
- the Back Package 1.11.0
- the GORM Package 1.1.0

GDL2 consists of the following components:

- EOControl (gnustep-db2control)

The fundamental abstraction library which includes many non RDBMS
related extensions such as KeyValueCoding extensions and other
categories.  Most importantly it contains the classes which handle the
coordination of object graphs namely EOEditingContext.

- EOAccess (gnustep-db2)

This library implements the underlying mechanism to retrieve and store
data in RDBMS.  It defines the abstract classes like EOAdaptor which
are subclassed to interface with concrete RDBMS implementations.

- EOInterface

This library implements classes used to synchronize UI components such
as NSTextFields, NSButtons and NSTableViews with the state of objects
which an EOEditingContext contains.

- EOAdaptors

This is a collection of concrete EOAdaptor projects needed to connect
to specific databases.  GDL2 currently only supplies an Adaptor for
the PostgreSQL database.  Even though the Adaptor is still called
Postgres95 we aim to support PostgreSQL 7.2 and higher API.  In fact
the Adaptor may very soon be renamed to PostgreSQL.

- DBModeler

GDL2 will offers a UI application to create and maintain .eomodel(d)
files.  This is the first release of a preliminary version.

======================
*** Important Note ***
======================

This release is meant for developers who can help test and contribute
the current code or are willing to test the interface.  It is not
ready for general purpose production code.  Having said that, it
should be mentioned that GDL2 is being used in production environments
and has been much tested in those contexts.

Expect the current interface to change especially with respect to
functions and methods not documented in EOF 4.5.  Even the library
names themselves may change.

With respect to EOF, GDL2 is currently missing EOSharedEditingContext,
EOMultiReaderLocks and the EOEvent classes.  Also we currently do not
support the EOSchemaSynchronization methods yet.  But you are likely
to find many more missing implementations within the source.  If you
identify something that you need, please let us know at
<discuss-gnustep@gnu.org> or even better get copyright assignment for
the FSF and post a patch.

Initial reading
===============

   The file `NEWS' has the library's feature history.

   The files `INSTALL' gives instructions for installing the library.

License
=======

   The GNUstep libraries are covered under the GNU Lesser Public
License.  This means you can use these libraries in any program (even
non-free programs).  If you distribute the libraries along with your
program, you must make the improvements you have made to the libraries
available to those you distribute to.  You should read the COPYING.LIB
file for more information.

   GNUstep tools, test programs, and other files are covered under the
GNU General Public License.  This means if you distribute derivative works
of these programs you must distribute them in compliance with the
GPL.  You should read the COPYING file for more information.

How can you help?
=================

   * Give us feedback!  Tell us what you like; tell us what you think
     could be better.

     Please log bug reports on the GNUstep project page
     <http://savannah.gnu.org/support/?group=gnustep> or send bug
     reports to <bug-gnustep@gnu.org>.


     Happy hacking!