Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Z
ZEO
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
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
ZEO
Commits
03a18cc2
Commit
03a18cc2
authored
Apr 30, 2009
by
Jim Fulton
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Renamed DB.open to connection
Added an option to disallow cross-database references.
parent
c8901d98
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
23 deletions
+10
-23
src/ZODB/DB.py
src/ZODB/DB.py
+10
-23
No files found.
src/ZODB/DB.py
View file @
03a18cc2
...
...
@@ -331,20 +331,6 @@ def getTID(at, before):
return
before
class
Methods
(
object
):
def
__init__
(
self
,
name
,
ifunc
,
cfunc
=
None
):
self
.
__name__
=
name
self
.
im_func
=
ifunc
self
.
cm_func
=
cfunc
def
__get__
(
self
,
inst
,
class_
):
if
inst
is
None
:
if
self
.
cm_func
is
None
:
raise
AttributeError
(
"Only in instances"
,
self
.
__name__
)
return
self
.
cm_func
.
__get__
(
class_
,
type
(
class_
))
return
self
.
im_func
.
__get__
(
inst
,
class_
)
class
DB
(
object
):
"""The Object Database
-------------------
...
...
@@ -401,7 +387,7 @@ class DB(object):
historical_timeout
=
300
,
database_name
=
'unnamed'
,
databases
=
None
,
):
xrefs
=
True
):
"""Create an object database.
:Parameters:
...
...
@@ -419,6 +405,8 @@ class DB(object):
the historical connection.
- `historical_timeout`: minimum number of seconds that
an unused historical connection will be kept, or None.
- `xrefs` - Boolian flag indicating whether implicit cross-database
references are allowed
"""
if
isinstance
(
storage
,
basestring
):
from
ZODB
import
FileStorage
...
...
@@ -490,6 +478,7 @@ class DB(object):
raise
ValueError
(
"database_name %r already in databases"
%
database_name
)
databases
[
database_name
]
=
self
self
.
xrefs
=
xrefs
self
.
_setupUndoMethods
()
self
.
history
=
storage
.
history
...
...
@@ -779,14 +768,6 @@ class DB(object):
finally
:
self
.
_r
()
def
class_open
(
class_
,
*
args
,
**
kw
):
db
=
class_
(
*
args
,
**
kw
)
conn
=
db
.
open
()
conn
.
onCloseCallback
(
db
.
close
)
return
conn
open
=
Methods
(
'open'
,
open
,
class_open
)
def
connectionDebugInfo
(
self
):
result
=
[]
t
=
time
.
time
()
...
...
@@ -1010,3 +991,9 @@ class TransactionalUndo(ResourceManager):
# XXX see XXX in ResourceManager
tid
,
oids
=
self
.
_db
.
storage
.
undo
(
self
.
_tid
,
t
)
self
.
_db
.
invalidate
(
tid
,
dict
.
fromkeys
(
oids
,
1
))
def
connection
(
*
args
,
**
kw
):
db
=
DB
(
*
args
,
**
kw
)
conn
=
db
.
open
()
conn
.
onCloseCallback
(
db
.
close
)
return
conn
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