Thread: [Gambas-devel-svn] SF.net SVN: gambas:[3912] gambas/trunk/gb.db.mysql/src/main.c
Brought to you by:
gambas
From: <ga...@us...> - 2011-07-02 01:03:49
|
Revision: 3912 http://gambas.svn.sourceforge.net/gambas/?rev=3912&view=rev Author: gambas Date: 2011-07-02 01:03:42 +0000 (Sat, 02 Jul 2011) Log Message: ----------- [GB.DB.MYSQL] * BUG: When creating a table, use "ENGINE" keyword instead of "TYPE" with MySQL >= 4.0.18. Modified Paths: -------------- gambas/trunk/gb.db.mysql/src/main.c This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ga...@us...> - 2011-08-02 21:26:49
|
Revision: 3964 http://gambas.svn.sourceforge.net/gambas/?rev=3964&view=rev Author: gambas Date: 2011-08-02 21:26:43 +0000 (Tue, 02 Aug 2011) Log Message: ----------- [GB.DB.MYSQL] * NEW: Support for MyySQL 5 BIT(x) field datatype. Modified Paths: -------------- gambas/trunk/gb.db.mysql/src/main.c This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ga...@us...> - 2011-09-16 13:15:23
|
Revision: 4130 http://gambas.svn.sourceforge.net/gambas/?rev=4130&view=rev Author: gambas Date: 2011-09-16 13:15:12 +0000 (Fri, 16 Sep 2011) Log Message: ----------- [GB.DB.MYSQL] * NEW: If the connection host starts with a slash, then we supposed that we are connecting to localhost, and that the host is actually the path of the socket to use. Modified Paths: -------------- gambas/trunk/gb.db.mysql/src/main.c This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ga...@us...> - 2014-11-06 23:38:55
|
Revision: 6614 http://sourceforge.net/p/gambas/code/6614 Author: gambas Date: 2014-11-06 23:38:51 +0000 (Thu, 06 Nov 2014) Log Message: ----------- [GB.DB.MYSQL] * BUG: Try to reconnect to a lost database server when listing existing databases and the fields of a table. Modified Paths: -------------- gambas/trunk/gb.db.mysql/src/main.c This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ga...@us...> - 2015-03-25 20:53:27
|
Revision: 7000 http://sourceforge.net/p/gambas/code/7000 Author: gambas Date: 2015-03-25 20:53:20 +0000 (Wed, 25 Mar 2015) Log Message: ----------- [GB.DB.MYSQL] * BUG: Don't crash when removing something from the metadata cache. Modified Paths: -------------- gambas/trunk/gb.db.mysql/src/main.c This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ga...@us...> - 2015-04-03 01:30:55
|
Revision: 7018 http://sourceforge.net/p/gambas/code/7018 Author: gambas Date: 2015-04-03 01:30:54 +0000 (Fri, 03 Apr 2015) Log Message: ----------- [GB.DB.MYSQL] * BUG: Blob fields and unlimited text fields should be detected correctly in all cases now. Modified Paths: -------------- gambas/trunk/gb.db.mysql/src/main.c This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ga...@us...> - 2015-08-19 22:33:21
|
Revision: 7229 http://sourceforge.net/p/gambas/code/7229 Author: gambas Date: 2015-08-19 22:33:20 +0000 (Wed, 19 Aug 2015) Log Message: ----------- [GB.DB.MYSQL] * BUG: USe the MySQL documentation trick to make the difference between a blob field and a text field. This should work far better than using the "max_length" value returned by the MySQL API that seems to randomly change between MySQL versions. Modified Paths: -------------- gambas/trunk/gb.db.mysql/src/main.c This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ga...@us...> - 2016-03-21 14:35:43
|
Revision: 7655 http://sourceforge.net/p/gambas/code/7655 Author: gambas Date: 2016-03-21 14:35:41 +0000 (Mon, 21 Mar 2016) Log Message: ----------- [GB.DB.MYSQL] * BUG: Remove useless "set autocommit" at each transaction. Why that? Modified Paths: -------------- gambas/trunk/gb.db.mysql/src/main.c This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ga...@us...> - 2016-04-05 21:03:00
|
Revision: 7721 http://sourceforge.net/p/gambas/code/7721 Author: gambas Date: 2016-04-05 21:02:58 +0000 (Tue, 05 Apr 2016) Log Message: ----------- [GB.DB.MYSQL] * BUG: TINY(1) field are now correctly converted into Gambas booleans in all cases. Modified Paths: -------------- gambas/trunk/gb.db.mysql/src/main.c This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ga...@us...> - 2016-05-04 14:56:59
|
Revision: 7756 http://sourceforge.net/p/gambas/code/7756 Author: gambas Date: 2016-05-04 14:56:57 +0000 (Wed, 04 May 2016) Log Message: ----------- [GB.DB.MYSQL] * BUG: Use "START TRANSACTION" instead of "BEGIN", because I was told that BEGIN actually does nothing as autocommit is set by default. Modified Paths: -------------- gambas/trunk/gb.db.mysql/src/main.c This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ga...@us...> - 2017-01-30 21:37:57
|
Revision: 8072 http://sourceforge.net/p/gambas/code/8072 Author: gambas Date: 2017-01-30 21:37:56 +0000 (Mon, 30 Jan 2017) Log Message: ----------- [GB.DB.MYSQL] * BUG: Use MEDIUMTEXT instead of TEXT for unlimited text fields, so that the maximum length is 16MB and not 64K. Modified Paths: -------------- gambas/trunk/gb.db.mysql/src/main.c This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ga...@us...> - 2017-02-01 01:27:59
|
Revision: 8077 http://sourceforge.net/p/gambas/code/8077 Author: gambas Date: 2017-02-01 01:27:57 +0000 (Wed, 01 Feb 2017) Log Message: ----------- [GB.DB.MYSQL] * BUG: Deleting an index does not crash anymore. Modified Paths: -------------- gambas/trunk/gb.db.mysql/src/main.c This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |