Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
U
uniset2
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
1
Issues
1
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
UniSet project repositories
uniset2
Commits
1a5e7fdc
Commit
1a5e7fdc
authored
Nov 13, 2017
by
Pavel Vainerman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
update python wrappers,
make style
parent
8cdcafb4
Show whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
14 additions
and
1 deletion
+14
-1
PostgreSQLInterface.cc
extensions/DBServer-PostgreSQL/PostgreSQLInterface.cc
+1
-0
DBInterface.h
include/DBInterface.h
+1
-1
UConnector_wrap.cxx
wrappers/python/lib/pyUniSet/UConnector_wrap.cxx
+1
-0
UExceptions_wrap.cxx
wrappers/python/lib/pyUniSet/UExceptions_wrap.cxx
+1
-0
UInterface_wrap.cxx
wrappers/python/lib/pyUniSet/UInterface_wrap.cxx
+1
-0
UModbus_wrap.cxx
wrappers/python/lib/pyUniSet/UModbus_wrap.cxx
+1
-0
pyUConnector.py
wrappers/python/lib/pyUniSet/pyUConnector.py
+2
-0
pyUExceptions.py
wrappers/python/lib/pyUniSet/pyUExceptions.py
+2
-0
pyUModbus.py
wrappers/python/lib/pyUniSet/pyUModbus.py
+2
-0
pyUniSet.py
wrappers/python/lib/pyUniSet/pyUniSet.py
+2
-0
No files found.
extensions/DBServer-PostgreSQL/PostgreSQLInterface.cc
View file @
1a5e7fdc
...
...
@@ -197,6 +197,7 @@ void PostgreSQLInterface::cancel_query()
{
if
(
!
db
)
return
;
db
->
cancel_query
();
}
// -----------------------------------------------------------------------------------------
...
...
include/DBInterface.h
View file @
1a5e7fdc
...
...
@@ -26,7 +26,7 @@ namespace uniset
virtual
bool
ping
()
const
=
0
;
// проверка доступности БД
virtual
DBResult
query
(
const
std
::
string
&
q
)
=
0
;
virtual
void
cancel_query
(){};
// попытка отменить текущий запрос
virtual
void
cancel_query
()
{};
// попытка отменить текущий запрос
virtual
const
std
::
string
lastQuery
()
=
0
;
virtual
bool
insert
(
const
std
::
string
&
q
)
=
0
;
virtual
double
insert_id
()
=
0
;
...
...
wrappers/python/lib/pyUniSet/UConnector_wrap.cxx
View file @
1a5e7fdc
...
...
@@ -6065,3 +6065,4 @@ SWIG_init(void) {
return
;
#endif
}
wrappers/python/lib/pyUniSet/UExceptions_wrap.cxx
View file @
1a5e7fdc
...
...
@@ -4589,3 +4589,4 @@ SWIG_init(void) {
return
;
#endif
}
wrappers/python/lib/pyUniSet/UInterface_wrap.cxx
View file @
1a5e7fdc
...
...
@@ -6247,3 +6247,4 @@ SWIG_init(void) {
return
;
#endif
}
wrappers/python/lib/pyUniSet/UModbus_wrap.cxx
View file @
1a5e7fdc
...
...
@@ -5914,3 +5914,4 @@ SWIG_init(void) {
return
;
#endif
}
wrappers/python/lib/pyUniSet/pyUConnector.py
View file @
1a5e7fdc
...
...
@@ -199,3 +199,5 @@ UConnector_swigregister = _pyUConnector.UConnector_swigregister
UConnector_swigregister
(
UConnector
)
# This file is compatible with both classic and new-style classes.
wrappers/python/lib/pyUniSet/pyUExceptions.py
View file @
1a5e7fdc
...
...
@@ -163,3 +163,5 @@ UValidateError_swigregister = _pyUExceptions.UValidateError_swigregister
UValidateError_swigregister
(
UValidateError
)
# This file is compatible with both classic and new-style classes.
wrappers/python/lib/pyUniSet/pyUModbus.py
View file @
1a5e7fdc
...
...
@@ -131,3 +131,5 @@ UModbus_swigregister = _pyUModbus.UModbus_swigregister
UModbus_swigregister
(
UModbus
)
# This file is compatible with both classic and new-style classes.
wrappers/python/lib/pyUniSet/pyUniSet.py
View file @
1a5e7fdc
...
...
@@ -314,3 +314,5 @@ UProxyObject_swigregister = _pyUniSet.UProxyObject_swigregister
UProxyObject_swigregister
(
UProxyObject
)
# This file is compatible with both classic and new-style classes.
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