Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Z
ZODB
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Kirill Smelkov
ZODB
Commits
39579291
Commit
39579291
authored
Feb 18, 2010
by
Christian Theune
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Migrate content from new.zope.org here.
parent
99aa5fa4
Changes
23
Show whitespace changes
Inline
Side-by-side
Showing
23 changed files
with
44 additions
and
5 deletions
+44
-5
conf.py
conf.py
+1
-1
documentation/articles/ZODB-overview.rst
documentation/articles/ZODB-overview.rst
+0
-0
documentation/articles/ZODB1.rst
documentation/articles/ZODB1.rst
+0
-0
documentation/articles/ZODB2.rst
documentation/articles/ZODB2.rst
+0
-0
documentation/articles/images/zeo-diagram.png
documentation/articles/images/zeo-diagram.png
+0
-0
documentation/articles/index.rst
documentation/articles/index.rst
+0
-0
documentation/guide/README
documentation/guide/README
+0
-0
documentation/guide/TODO
documentation/guide/TODO
+0
-0
documentation/guide/admin.rst
documentation/guide/admin.rst
+0
-0
documentation/guide/chatter.py
documentation/guide/chatter.py
+0
-0
documentation/guide/convert_zodb_guide.py
documentation/guide/convert_zodb_guide.py
+0
-0
documentation/guide/gfdl.rst
documentation/guide/gfdl.rst
+0
-0
documentation/guide/index.rst
documentation/guide/index.rst
+0
-0
documentation/guide/indexing.rst
documentation/guide/indexing.rst
+0
-0
documentation/guide/introduction.rst
documentation/guide/introduction.rst
+0
-0
documentation/guide/links.rst
documentation/guide/links.rst
+0
-0
documentation/guide/modules.rst
documentation/guide/modules.rst
+0
-0
documentation/guide/prog-zodb.rst
documentation/guide/prog-zodb.rst
+0
-0
documentation/guide/storages.rst
documentation/guide/storages.rst
+0
-0
documentation/guide/transactions.rst
documentation/guide/transactions.rst
+0
-0
documentation/guide/zeo.rst
documentation/guide/zeo.rst
+0
-0
index.rst
index.rst
+16
-4
overview.rst
overview.rst
+27
-0
No files found.
conf.py
View file @
39579291
...
...
@@ -42,7 +42,7 @@ master_doc = 'index'
# General information about the project.
project
=
u'ZODB'
copyright
=
u'2009
, Zope Developers Community
'
copyright
=
u'2009
-2010, Zope Foundation
'
# The version info for the project you're documenting, acts as replacement for
# |version| and |release|, also used in various other places throughout the
...
...
articles/ZODB-overview.rst
→
documentation/
articles/ZODB-overview.rst
View file @
39579291
File moved
articles/ZODB1.rst
→
documentation/
articles/ZODB1.rst
View file @
39579291
File moved
articles/ZODB2.rst
→
documentation/
articles/ZODB2.rst
View file @
39579291
File moved
articles/images/zeo-diagram.png
→
documentation/
articles/images/zeo-diagram.png
View file @
39579291
File moved
articles/index.rst
→
documentation/
articles/index.rst
View file @
39579291
File moved
zodb
guide/README
→
documentation/
guide/README
View file @
39579291
File moved
zodb
guide/TODO
→
documentation/
guide/TODO
View file @
39579291
File moved
zodb
guide/admin.rst
→
documentation/
guide/admin.rst
View file @
39579291
File moved
zodb
guide/chatter.py
→
documentation/
guide/chatter.py
View file @
39579291
File moved
zodb
guide/convert_zodb_guide.py
→
documentation/
guide/convert_zodb_guide.py
View file @
39579291
File moved
zodb
guide/gfdl.rst
→
documentation/
guide/gfdl.rst
View file @
39579291
File moved
zodb
guide/index.rst
→
documentation/
guide/index.rst
View file @
39579291
File moved
zodb
guide/indexing.rst
→
documentation/
guide/indexing.rst
View file @
39579291
File moved
zodb
guide/introduction.rst
→
documentation/
guide/introduction.rst
View file @
39579291
File moved
zodb
guide/links.rst
→
documentation/
guide/links.rst
View file @
39579291
File moved
zodb
guide/modules.rst
→
documentation/
guide/modules.rst
View file @
39579291
File moved
zodb
guide/prog-zodb.rst
→
documentation/
guide/prog-zodb.rst
View file @
39579291
File moved
zodb
guide/storages.rst
→
documentation/
guide/storages.rst
View file @
39579291
File moved
zodb
guide/transactions.rst
→
documentation/
guide/transactions.rst
View file @
39579291
File moved
zodb
guide/zeo.rst
→
documentation/
guide/zeo.rst
View file @
39579291
File moved
index.rst
View file @
39579291
==========================================
ZODB - a native object database for Python
==========================================
ZODB related documentation and articles
=======================================
Don't squeeze your objects into tables: store them in an object database.
The Zope Object Database (ZODB) provides seamless object persistence in Python.
It gets rid of requiring a relational database for your object-oriented
application and provides you with a powerful and safe object sore:
persistence, transactions, scalability, and more. Have a look at our :doc:`overview<overview>`.
Documentation
=============
.. toctree::
:maxdepth: 1
zodbguide/index
articles/index
documentation/tutorial
documentation/guide/index
documentation/articles/index
Release information
===================
...
...
overview.rst
0 → 100644
View file @
39579291
Overview
========
Python programs are written with the object-oriented paradigm. You use objects
that reference each other freely and can be of any form and shape: no object
has to adhere to a specific schema and can hold arbitrary information.
Storing those objects in relational databases requires you to give up on the
freedom of reference and schema. The constraints of the relational model
reduces your ability to write object-oriented code.
The ZODB is a native object database, that stores your objects while allowing
you to work with any paradigms that can be expressed in Python. Thereby your
code becomes simpler, more robust and easier to understand.
Also, there is no gap between the database and your program: no glue code to
write, no mappings to configure. Have a look at the tutorial to see, how easy
it is.
Some of the features that ZODB brings to you:
* Transparent persistence for Python objects
* Full ACID-compatible transaction support (including savepoints)
* History/undo ability
* Efficient support for binary large objects (BLOBs)
* Pluggable storages
* Scalable architecture
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment