Commit Graph

80 Commits

Author SHA1 Message Date
418dbf006d Set version number to 1.1.2:
Due to an error in versioning first alpha versions, they were uploaded
as 1.1.0 and 1.1.1 and afterwards removed. Since we can't reuse the
same version number - we need to set it to 1.1.2
2022-06-23 14:45:12 +02:00
a9fcc27ab0 Fixed __version_info__ for GA 2022-05-30 09:16:23 +02:00
fde6a22f2a Setup:
removed prerelease segment
removed eoled python 3.6 version
2022-05-30 07:33:24 +02:00
f23e4e9b83 CONPY-205: Added error constants
Error code constants are now defined in constants/ERR.
The file ERR.py is generated by helper/create_errconst.py
script, please don't edit it.
2022-05-25 18:54:11 +02:00
1aa2bbef08 - Documentation
- docstring fixes
- removed doc and docs subdirectory, since documentation is in docs
  branch
2022-04-11 08:03:20 +02:00
c8a4ed7a80 Set prerelease to rc1 2022-02-10 18:56:35 +01:00
d3eafac5b3 bump version 2021-11-02 11:15:04 +01:00
847b8a5bcf Bumped version, updated classifier section 2021-10-20 05:54:46 +02:00
e3ef9aaf73 - Bumped version number to 1.1.0b1
- Documentation rebuild
2021-09-21 11:20:24 +02:00
d1197e3f42 Documentation update:
- added release notes
- added doctest support
2021-09-08 15:31:03 +02:00
40503a0728 bumped version number 2021-08-22 11:33:18 +02:00
2ec4130bbe bump version number 2021-08-21 08:21:08 +02:00
47ca11d921 Documentation update 2021-08-01 10:31:10 +02:00
ebb09cf56e Documentation 2021-07-28 06:55:10 +02:00
5a81686f4c Documentation work 2021-07-26 06:54:38 +02:00
5870f5d4d7 cursor:
added keyword quote_sequences (default=true)

connection:

moved tpc functions to native python
moved autocommit to native python
2021-07-22 14:15:53 +02:00
84df56ce40 connection and cursor class are now written in
native python
2021-07-12 09:46:05 +02:00
27730cd018 Moved more methods and propertys from C to Python code 2021-03-21 22:44:42 +01:00
aa65cc853a Exchanged C written connection pool class by native python class. 2021-01-18 06:11:03 +01:00
feb990db4e Moved DBAPI 2.0 Date/Time/Timestamp constructors from C code to Python module dpapi20.py 2020-12-01 20:59:27 +01:00
a2b3e98104 Replaced Mrdb_Fieldinfo by python fieldinfo class 2020-12-01 08:28:01 +01:00
7df428ecf8 Moved Objects from c to python code
Indicator, BINARY, NUMBER, STRING and DATE objects were moved
to python code
2020-11-30 16:49:16 +01:00
8a9ab456d8 bumped version number 2020-11-24 18:37:52 +01:00
ae7e4422e2 Bumped version 2020-10-20 06:25:48 +02:00
30caad5059 Bump version number 2020-10-05 09:30:12 +02:00
8d1fdaab5a Bump version number 2020-09-15 12:32:14 +02:00
be2cb47208 Bumped version number 2020-08-16 17:42:04 +02:00
29b05e3b09 Various fixes and changes for SQLAlchemy support:
- added a thin python wrapper around mariadb module
- added constansts under mariadb.constants (CLIENT, CURSOR, INDICATOR)
- bench and test are now in testing subdirectory
- updated documentation
2020-07-24 12:13:31 +02:00
2ee51a0e90 Bumped version number 2020-06-24 08:58:37 +02:00
55fa735a49 removed pre release segment for GA 2020-06-06 07:01:10 +02:00
f6984c933f - removed debug printf
- changed location for documentation
2020-06-06 08:48:27 +02:00
d1b1f08baf Changed "Development Status" classifier from Beta to Stable. 2020-06-05 16:39:38 +02:00
0ed16c9917 Bumped version number to 1.0.0 2020-05-27 10:42:28 +02:00
7142bedc62 Fix for CONPY-66:
fixed typo in setup configuration for windows, which caused to link
dynamically against MySQL Connector/C.
2020-05-14 14:24:32 +02:00
c1509758ed CONPY-63:
Implement module attributes __version__ and __version_info__.

__version__ returns the module version number as a string in format
"MAJOR.MINOR.PATCH" while __version_info__ returns the version number as
a tuple in format (MAJOR, MINOR, PATCH, PRE, 0). Pre is the pre-release segment
as described in PEP-440.
2020-05-11 08:55:38 +02:00
f66e1857cf bumped version number 2020-05-06 07:36:16 +02:00
6cb522797e Bump version number 2020-04-15 11:45:04 +02:00
969486566f bumped version number to 0.9.57 2020-04-06 20:46:33 +02:00
35f0ba7b43 Bump version number 2020-03-30 18:24:18 +02:00
f152bffe41 Bump version number 2020-02-20 09:51:27 +01:00
840de124bd - minor Documentatiion fixes
- fixed test cases using removed character set option
2020-02-18 16:11:29 +01:00
57db60d4db Bunp version number. New version is 0.9.54 2020-01-27 06:03:14 +01:00
98c394c344 Bumped version number 2020-01-04 17:07:33 +01:00
ad07e971b8 Build fixes 2019-12-18 15:10:54 +01:00
974410dd1c Saving files before refreshing line endings 2019-12-16 11:35:35 +01:00
cd02ca691b Pushed patch number 2019-12-16 06:57:37 +01:00
675223744b Build fixes for MacOSX 2019-12-04 17:11:37 +01:00
e218d19060 CONPY-31: Implement callproc method
Input/Output or Output parameters have to be retrieved by .fetch methods,
  the .sp_outparams attribute indicates if the result set contains output
  parameters.
2019-12-03 20:18:38 +01:00
3b02464b63 Fixes for class ConnectionPool()
- added mutexes for thread safety
- when calling get_connection thread pool will now not return the next
  free connection, but the connection that was not used the longest time.
2019-12-01 05:47:19 +01:00
047d8b9e0b removed debug output from setup.py 2019-11-26 09:04:50 +01:00