Re: [Firebird-devel] ICU. VS2010 project files

2011-04-16 Thread Vlad Khorsun
I spend some time for revision and adaption of your copy of ICU library for VS2010 Thanks 1. Reduce number of compiler warnings I defined the _CRT_SECURE_NO_WARNINGS=1 in firebird2intl.props Good change, imho 2. Creation of PDB files for all binaries (debug/release) Not

[Firebird-devel] [FB-Tracker] Created: (CORE-3444) add option to specify timeout in WAIT clause of SET TRANSACTION, add LOCK_TIMEOUT in firebird.conf

2011-04-16 Thread Pavel Zotov (JIRA)
add option to specify timeout in WAIT clause of SET TRANSACTION, add LOCK_TIMEOUT in firebird.conf -- Key: CORE-3444 URL:

[Firebird-devel] [FB-Tracker] Created: (CORE-3445) Infinite quantity of transactions start and rollback when DB trigger on rollback contains error

2011-04-16 Thread Pavel Zotov (JIRA)
Infinite quantity of transactions start and rollback when DB trigger on rollback contains error --- Key: CORE-3445 URL: http://tracker.firebirdsql.org/browse/CORE-3445

Re: [Firebird-devel] Do we need many options for boolean constants in config file?

2011-04-16 Thread Leyne, Sean
Claudio, People, I think that true and yes are enough, the y value is superfluous: bool Config::asBoolean(const ConfigFile::String value) { return (atoi(value.data()) != 0) || value.equalsNoCase(true) || value.equalsNoCase(yes) ||

[Firebird-devel] The boot build again

2011-04-16 Thread Claudio Valderrama C.
Hello, I will continue making noise until I'm explained how the new build system is supposed to work. I'm tired of checking for possible differences between the VC10 and VC8 projects and my VC9 project. Obviously the developers that have attempted the boot build had something left in a temporary

Re: [Firebird-devel] Do we need many options for boolean constants in config file?

2011-04-16 Thread Dmitry Yemanov
17.04.2011 1:21, Leyne, Sean wrote: Am I reading this correctly; any non-zero value would be considered true? If so, then I do not agree with this logic. True values must be specific, all other values must be false. FWIW, this logic is used since v1.5 and nobody so far complained. Dmitry