Changes for new version

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/sqlclient/trunk@27025 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
rfm 2008-11-12 06:09:44 +00:00
parent ded3a0c6a8
commit 727bb5cdfd
4 changed files with 11 additions and 4 deletions

View file

@ -4,6 +4,8 @@
* SQLClient.m:
Add support for tracking the number of consecutive connection failures
and imposing a delay between connection attempts.
* JDBC.m: fix typo
* GNUMmakefile: bump version
2008-07-19 Nicola Pero <nicola.pero@meta-innovation.com>

View file

@ -3,7 +3,7 @@ include $(GNUSTEP_MAKEFILES)/common.make
-include config.make
PACKAGE_NAME = SQLClient
PACKAGE_VERSION = 1.4.0
PACKAGE_VERSION = 1.5.0
CVS_MODULE_NAME = gnustep/dev-libs/SQLClient
CVS_TAG_NAME = SQLClient
SVN_BASE_URL=svn+ssh://svn.gna.org/svn/gnustep/libs
@ -16,7 +16,7 @@ TEST_TOOL_NAME=
LIBRARY_NAME=SQLClient
DOCUMENT_NAME=SQLClient
SQLClient_INTERFACE_VERSION=1.4
SQLClient_INTERFACE_VERSION=1.5
SQLClient_OBJC_FILES = SQLClient.m
SQLClient_LIBRARIES_DEPEND_UPON = -lPerformance

2
JDBC.m
View file

@ -1485,7 +1485,7 @@ static int JDBCVARCHAR = 0;
}
else
{
records = [[lType alloc] initWthCapacity: 0];
records = [[lType alloc] initWithCapacity: 0];
}
(*env)->PopLocalFrame (env, NULL);
}

View file

@ -382,7 +382,12 @@ extern unsigned SQLClientTimeTick();
unsigned int _debugging; /** The current debugging level */
GSCache *_cache; /** The cache for query results */
NSThread *_cacheThread; /** Thread for cache queries */
unsigned _connectFails; /** The count of connection failures */
unsigned int _connectFails; /** The count of connection failures */
/** Allow for extensions by allocating memory and pointing to it from
* the _extra ivar. That way we can avoid binary incompatibility between
* minor releases.
*/
void *_extra;
}
/**