100 Commits

Author SHA1 Message Date
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
fa52659740 Set minimum required python version to 3.6 2019-11-26 08:44:44 +01:00
d3401f6cb3 Added long description for PyPi 2019-11-26 08:42:28 +01:00
086f3cc0f0 Added missing site.cfg to MANIFEST.in
Removed invalid classifier entry (Environment:Posix)
2019-11-26 07:32:54 +01:00
9a8cc14710 Added minum required Python version (>= 3.5) 2019-11-25 19:00:32 +01:00
a160152903 Windows build fixes: configuration is now stored in site.cfg 2019-11-25 17:24:04 +01:00
c823d32524 Windows build fixes 2019-11-25 14:45:23 +01:00
7c9a18e946 Bump patch number 2019-11-25 06:04:17 +01:00
3a872d6aaa Windows build fixes 2019-11-24 12:39:24 +01:00
628fc39cd0 Initial connection pool implementation 2019-11-24 12:45:32 +01:00
1b75fa2e7d Merge branch 'master' of https://github.com/MariaDB/mariadb-connector-python 2019-11-12 11:13:08 +01:00
ab55acc015 [misc] adding classifiers python language level and README badges 2019-11-06 15:47:33 +01:00
467df384ff Merge branch 'master' into rush_master
# Conflicts:
#	setup.py
2019-11-06 15:46:31 +01:00
11976139d4 [misc] python standard formatting 2019-11-06 15:13:56 +01:00
82d81dd748 Fix for CONPY-25: Add classifier in description 2019-11-06 07:34:07 +01:00
dd64af16db - Windows warning fixes
- Fixed key lookup (InstallDir) in setup.py
2019-11-06 07:18:06 +01:00
273777c92c Windows build fixes 2019-08-29 12:06:29 +02:00
2cb584b5cb Posix configuration fixes 2019-08-20 18:07:13 +02:00
9aca6adcaa Setup for Posix systems:
specify the environment variable MARIADB_CONFIG which points to the location
of mariadb_config program.
2018-12-05 18:21:49 +01:00
68b31f78ee removed libmariadb submodule
Added support for mariadb_config (posix only)
You can build now by specify location of mariadb_config, e.g.
python3.6 setup.py build --mariadb_config=/opt/local/bin/mariadb_config
2018-12-05 13:48:02 +01:00
27c7a1b19a bumpend version to 0.9.1 2018-07-24 11:58:02 +02:00
fdc607123e Added support for server_version and server_info attributes.
Minor fixes in setup.py
2018-07-24 10:09:55 +02:00
e41f0713ae CONPY-3:
New connection methods:
- autocommit
- ping
- kill
- reconnect
- escape_string
- reset
- change_user

New attributes:
- user (read only)
- database (read/write)
- connection_id (read only)
- warnings (read only)
- auto_reconnect (read/write)

New Cursor attribute:
- warnings (read only)
2018-07-22 17:58:35 +02:00
fbfca48e0e Added support for indicators (executemany):
mariadb.indicator_null,
  mariadb.indicator_default,
  mariadb.indictor.ignore
Added support for Tuple and list objects:
  List and Tuple will be stored as blob in a dynamic column
2018-07-15 10:00:20 +02:00
5c0e659c9a - Added two phase commit support 2018-07-08 16:38:56 +02:00
63cc34a229 Added dbapitype class 2018-07-03 06:42:08 +02:00
02048b994f - Minor fixes
- Added support for named tuple results for fetch operations
2018-06-30 17:34:53 +02:00
2f86da2122 tests and minor fixes for rowcount 2018-06-28 17:41:54 +02:00
d308e38495 Create path for Connector/C build 2018-06-27 18:30:01 +02:00
3b45ecd658 Submodule initialization 2018-06-27 18:22:05 +02:00
be210d57be First version 2018-06-27 15:22:10 +02:00