This repository has been archived by the owner on May 5, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 134
/
CHANGES
60 lines (49 loc) · 1.66 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
Changelog
=========
0.3.5.dev
---------
- Fixed various problems in decoding and encoding of CESU-8 (#102)
0.3.4
-----
- Fixed parameters tuple access with unicode index (#98)
- Ignore part 47 PARAMETERMETADATA in _handle_upsert (#89)
0.3.3
-----
- Truncate (instead of round) microseconds to milliseconds in time or timestamp columns.
0.3.2
-----
- Accept PARAMETERMETADATA part while handling select response
- Allow Decimal in prepared statements
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