forked from SAP-archive/PyHDB
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CHANGES
42 lines (35 loc) · 1.23 KB
/
CHANGES
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
Changelog
=========
0.3.1
-----
- Raise IntegrityError on unique constraint violation
0.3.0
-----
- Added LOB_WRITE requests allowing to insert or update LOBs of arbitrary size
- Added support of SELECT FOR UPDATE statements
- Added support of Geometry types
- Added support for procedures with resultsets
- Fixed and improved Real, BigInt, Time and Date types
- Code cleanup and refactoring
- Renamed logger form receive to pyhdb
- Reactivated unit tests which were deactivated by accident
- Added pyhdb.connect.from_ini(<inifile>) to connect to db with parameters from properly formatted ini file
0.2.4
-----
- added support for packing timestamps into payload
- added support for casting integers and floats provided in string format for packing into payload
- added support for casting floats and integers into strings where string is requested for payload
0.2.3
-----
- fixed nasty bug when looping over long list of result rows from select statement
0.2.1
-----
- CLOBs are now using cStringIO as underlying container to hold data as 'str' and not unicode (Python 2.x)
- Updated README (added basic information about LOBs)
0.2.0
-----
- Support for BLOB, CLOB, and NCLOB
- Lots of code refactoring and PEP8 cleanup
0.1.0
-----
- First release version