Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
erp5
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
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Hardik Juneja
erp5
Commits
8059c7f6
Commit
8059c7f6
authored
Aug 06, 2015
by
Boris Kocherov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
sqlcatalog properties could not be changed through form edit if database connection does not exist.
parent
f50e2113
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
27 additions
and
19 deletions
+27
-19
product/ZSQLCatalog/SQLCatalog.py
product/ZSQLCatalog/SQLCatalog.py
+27
-19
No files found.
product/ZSQLCatalog/SQLCatalog.py
View file @
8059c7f6
...
...
@@ -26,6 +26,7 @@ from AccessControl.SimpleObjectPolicies import ContainerAssertions
from
BTrees.OIBTree
import
OIBTree
from
App.config
import
getConfiguration
from
BTrees.Length
import
Length
from
Shared.DC.ZRDB.DA
import
DatabaseError
from
Shared.DC.ZRDB.TM
import
TM
from
Acquisition
import
aq_parent
,
aq_inner
,
aq_base
...
...
@@ -1062,19 +1063,22 @@ class Catalog(Folder,
return
self
.
sql_search_result_keys
def
_getCatalogSchema
(
self
,
table
=
None
):
result_list
=
[]
try
:
method_name
=
self
.
sql_catalog_schema
try
:
method
=
getattr
(
self
,
method_name
)
search_result
=
method
(
table
=
table
)
for
c
in
search_result
:
result_list
.
append
(
c
.
Field
)
except
ConflictError
:
except
AttributeError
:
pass
else
:
try
:
return
tuple
(
c
.
Field
for
c
in
method
(
table
=
table
))
except
(
ConflictError
,
DatabaseError
):
raise
except
:
LOG
(
'SQLCatalog'
,
WARNING
,
'_getCatalogSchema failed with the method %s'
%
method_name
,
error
=
sys
.
exc_info
())
except
Exception
:
pass
return
tuple
(
result_list
)
LOG
(
'SQLCatalog'
,
WARNING
,
'_getCatalogSchema failed with the method %s'
%
method_name
,
error
=
sys
.
exc_info
())
return
()
@
transactional_cache_decorator
(
'SQLCatalog.getColumnIds'
)
def
_getColumnIds
(
self
):
...
...
@@ -1148,18 +1152,22 @@ class Catalog(Folder,
Calls the show table method and returns dictionnary of
Field Ids
"""
keys
=
[]
method_name
=
self
.
sql_catalog_tables
try
:
method
=
getattr
(
self
,
method_name
)
search_result
=
method
()
for
c
in
search_result
:
keys
.
append
(
c
[
0
])
except
ConflictError
:
except
AttributeError
:
pass
else
:
try
:
return
[
c
[
0
]
for
c
in
method
()]
except
(
ConflictError
,
DatabaseError
):
raise
except
:
except
Exception
:
pass
return
keys
LOG
(
'SQLCatalog'
,
WARNING
,
'getTableIds failed with the method %s'
%
method_name
,
error
=
sys
.
exc_info
())
return
[]
def
getUIDBuffer
(
self
,
force_new_buffer
=
False
):
global
global_uid_buffer_dict
...
...
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