~ubuntu-branches/ubuntu/precise/libtangram-perl/precise

« back to all changes in this revision

Viewing changes to Tangram.pod

  • Committer: Bazaar Package Importer
  • Author(s): Stephen Zander
  • Date: 2001-09-21 10:20:34 UTC
  • Revision ID: james.westby@ubuntu.com-20010921102034-tohkprbnz4n1aua0
Tags: upstream-2.04
ImportĀ upstreamĀ versionĀ 2.04

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
=head1 NAME
 
2
 
 
3
Tangram - Orthogonal Object Persistence in Relational Databases
 
4
 
 
5
=head1 DESCRIPTION
 
6
 
 
7
Tangram is an object-relational mapper. It makes objects persist in
 
8
relational databases, and provides powerful facilities for retrieving
 
9
and filtering them.  Tangram fully supports object-oriented
 
10
programming, including polymorphism, multiple inheritance and
 
11
collections.  It does so in an orthogonal fashion, that is, it doesn't
 
12
require your classes to implement support functions nor inherit from a
 
13
utility class.
 
14
 
 
15
=head1 COMPATIBILITY
 
16
 
 
17
Tangram is known to run in the following environments, however,
 
18
Tangram uses standard SQL and should be usable with any SQL-83
 
19
compliant database.
 
20
 
 
21
Note that some functions (e.g. transactions and subselects) may not be
 
22
available in some environments. This is reported during the test suite.
 
23
 
 
24
 
 
25
=over 4
 
26
 
 
27
=item *
 
28
 
 
29
Perl 5.00503
 
30
 
 
31
=item *
 
32
 
 
33
Set::Object 1.02
 
34
 
 
35
=item *
 
36
 
 
37
DBI 1.14
 
38
 
 
39
=item *
 
40
 
 
41
DBD::mysql 2.0402
 
42
 
 
43
=item *
 
44
 
 
45
DBD::Oracle 1.06
 
46
 
 
47
=item *
 
48
 
 
49
DBD::Sybase 0.21
 
50
 
 
51
=item *
 
52
 
 
53
DBD::Pg 0.93
 
54
 
 
55
=back
 
56
 
 
57
=head1 LICENSE & WARRANTY
 
58
 
 
59
You may use Tangram, free of charge, under the terms of the GPL.
 
60
You can obtain a commercial license from Sound Object Logic, see
 
61
http://www.soundobjectlogic.com/tangram/licenses.html.
 
62
 
 
63
TANGRAM COMES WITHOUT ANY WARRANTY OF ANY KIND.
 
64
 
 
65
=head1 SUPPORT
 
66
 
 
67
Please send bug reports directly to me (jll@soundobjectlogic.com)
 
68
or to the Tangram mailing list (tangram-users@lists.sourceforge.net).
 
69
 
 
70
Whenever possible, include a short, complete script demonstrating the
 
71
problem.
 
72
 
 
73
Questions of general interest should should be posted either to the
 
74
mailing list or to comp.lang.perl.modules, which I monitor daily. Make
 
75
sure to include 'Tangram' in the subject line.
 
76
 
 
77
Commercial support for Tangram is available, see
 
78
http://www.soundobjectlogic.com/tangram/support.html.
 
79
 
 
80
=head1 AUTHORS
 
81
 
 
82
Except where noted, all the code and documentation was written by
 
83
Jean-Louis Leroy (jll@soundobjectlogic.com) and Sound Object Logic.
 
84
 
 
85
=cut