Re: [Firebird-devel] Code out of order

2014-12-08 Thread Dmitry Yemanov
09.12.2014 02:30, Claudio Valderrama C. wrote: > People, I failed to see this commit before in jrd\functions.cpp in FB 2.5, > inside set_context(). > > Before the change: > thread_db* tdbb = JRD_get_thread_data(); > if (!tdbb) > > After the change: > thread_db* tdbb = JRD_get_thr

Re: [Firebird-devel] FB3 and .Net provider

2014-12-08 Thread liviuslivius
-Oryginalna wiadomość- From: Mark Rotteveel Sent: Monday, December 08, 2014 8:24 PM To: For discussion among Firebird Developers Subject: Re: [Firebird-devel] FB3 and .Net provider On 8-12-2014 20:11, liviusliv...@poczta.onet.pl wrote: > On Mon, 08 Dec 2014 08:33:59 +0100, liviuslivius >

[Firebird-devel] Code out of order

2014-12-08 Thread Claudio Valderrama C.
People, I failed to see this commit before in jrd\functions.cpp in FB 2.5, inside set_context(). Before the change: thread_db* tdbb = JRD_get_thread_data(); if (!tdbb) After the change: thread_db* tdbb = JRD_get_thread_data(); Database* dbb = tdbb->getDatabase();

[Firebird-devel] [FB-Tracker] Created: (CORE-4636) rollback works incorrect for some metadata changes

2014-12-08 Thread Nick Dee (JIRA)
rollback works incorrect for some metadata changes -- Key: CORE-4636 URL: http://tracker.firebirdsql.org/browse/CORE-4636 Project: Firebird Core Issue Type: Bug Components: Engine

Re: [Firebird-devel] FB 3.0 Beta - How to intialize security db

2014-12-08 Thread Werner
Hi Alex, On 12/8/2014 17:30, Alex Peshkoff wrote: ... >> Note also that I can attach to the employee.fdb using IBExpert using >> SYSDBA and a pw of anything is that intended? > What OS are you using? Windows 8.1 > What is current_user value in that attachment? Not sure what you mean with 'current_

Re: [Firebird-devel] FB3 and .Net provider

2014-12-08 Thread Mark Rotteveel
On 8-12-2014 20:11, liviusliv...@poczta.onet.pl wrote: > On Mon, 08 Dec 2014 08:33:59 +0100, liviuslivius > wrote: >> Ok, >> >> now i see - .Net provider should use Legacy mode? >> I wrongly supposed that it support FB3 options? >> I use default from FBConfig - then i suppose it is Srp. >> WireCry

Re: [Firebird-devel] FB3 and .Net provider

2014-12-08 Thread liviuslivius
-Oryginalna wiadomość- From: Mark Rotteveel Sent: Monday, December 08, 2014 9:26 AM To: For discussion among Firebird Developers Subject: Re: [Firebird-devel] FB3 and .Net provider On Mon, 08 Dec 2014 08:33:59 +0100, liviuslivius wrote: > Ok, > > now i see - .Net provider should use Lega

Re: [Firebird-devel] FB 3.0 Beta - How to intialize security db

2014-12-08 Thread Vlad Khorsun
08.12.2014 18:22, Werner wrote: > Hi, > > I run following command (passwords changed to my liking) as per > ReleaseNotes. > gsec -modify SYSDBA -pw SomethingCryptic -user SYSDBA -password anything > > An error occurred while attempting to modify the user record. > Install incomplete, please read c

Re: [Firebird-devel] FB 3.0 Beta - How to intialize security db

2014-12-08 Thread Alex Peshkoff
On 12/08/14 19:22, Werner wrote: > Hi, > > I run following command (passwords changed to my liking) as per > ReleaseNotes. > gsec -modify SYSDBA -pw SomethingCryptic -user SYSDBA -password anything > > An error occurred while attempting to modify the user record. > Install incomplete, please read c

Re: [Firebird-devel] FB 3.0 Beta - How to intialize security db

2014-12-08 Thread Werner
On 12/8/2014 17:22, Werner wrote: ... > Note also that I can attach to the employee.fdb using IBExpert using > SYSDBA and a pw of anything is that intended? Yeap, as I do a local connection. Werner -- Download BIRT iHub F

[Firebird-devel] FB 3.0 Beta - How to intialize security db

2014-12-08 Thread Werner
Hi, I run following command (passwords changed to my liking) as per ReleaseNotes. gsec -modify SYSDBA -pw SomethingCryptic -user SYSDBA -password anything An error occurred while attempting to modify the user record. Install incomplete, please read chapter "Initializing security database" in Qu

Re: [Firebird-devel] FB 3.0 Beta 1

2014-12-08 Thread Paul Reeves
On Monday 08 December 2014 15:43:30 Werner wrote: > On 12/8/2014 9:28, Paul Reeves wrote: > > On Monday 08 December 2014 09:04:16 Werner wrote: > >> I would like to start testing FB 3. > >> > >> Does the installer allow installation side by side with FB 2.5? > > > > Not really. The installer has ne

Re: [Firebird-devel] FB 3.0 Beta 1

2014-12-08 Thread Werner
On 12/8/2014 9:28, Paul Reeves wrote: > On Monday 08 December 2014 09:04:16 Werner wrote: >> I would like to start testing FB 3. >> >> Does the installer allow installation side by side with FB 2.5? >> > Not really. The installer has never been designed to support anything more > than simple use ca

Re: [Firebird-devel] FB3 and .Net provider

2014-12-08 Thread Jim Starkey
If sha-1 were a perfect cyptological hash, the probability of a hash collision for a given password would be 1 in 2^160, which, incidentally, is a huge, honking, big number. It isn't however, so the probability is a lttle less. Still, using all of the computing resources on earth the many, man

Re: [Firebird-devel] FB3 and .Net provider

2014-12-08 Thread Jim Starkey
And, no, the probablity of a cryptographic hash collision is not a function of source string length. Part of the definition of a cryptological hash or encryption algorithm is that a one bit change in the source string results in, on average, in changes to 50% of the output bits. A short passwor

Re: [Firebird-devel] FB3 and .Net provider

2014-12-08 Thread Mark Rotteveel
On Mon, 08 Dec 2014 14:33:16 +0300, Alex Peshkoff wrote: > On 12/08/14 14:02, Mark Rotteveel wrote: >> On Mon, 08 Dec 2014 13:44:36 +0300, Alex Peshkoff >> wrote: >>> Yes. For password >20 bytes sooner of all exists shorter one with same >>> hash value. >> But that is technically irrelevant. > >

Re: [Firebird-devel] FB3 and .Net provider

2014-12-08 Thread Alex Peshkoff
On 12/08/14 14:02, Mark Rotteveel wrote: > On Mon, 08 Dec 2014 13:44:36 +0300, Alex Peshkoff > wrote: >> Yes. For password >20 bytes sooner of all exists shorter one with same >> hash value. > But that is technically irrelevant. As long as we do not talk about brute force. > Although identical h

Re: [Firebird-devel] FB3 and .Net provider

2014-12-08 Thread Mark Rotteveel
On Mon, 08 Dec 2014 13:44:36 +0300, Alex Peshkoff wrote: > Yes. For password >20 bytes sooner of all exists shorter one with same > hash value. But that is technically irrelevant. Although identical hashes are certain due to pigeon holing, that doesn't mean shorter passwords (or passwords near t

Re: [Firebird-devel] FB3 and .Net provider

2014-12-08 Thread Alex Peshkoff
On 12/08/14 12:24, Helen Borrie wrote: > At 09:31 p.m. 8/12/2014, Mark Rotteveel wrote: >> On Mon, 08 Dec 2014 07:48:21 +1300, Helen Borrie >> wrote: >>> The release notes in your Fb3 download kit are missing the Compatibility >>> chapter (Ch. 12), which explains what you need to do. >>> >>> Pleas

Re: [Firebird-devel] Wrong version number of Firebird?

2014-12-08 Thread Alex Peshkoff
On 12/08/14 10:41, Dmitry Yemanov wrote: > 08.12.2014 10:26, liviuslivius wrote: >> what chappened with version number of firebird 3? >> I have current snapshot (2014-12-08) >> 3.0.0.25042 >> and from (2014-10-30) >> 3.0.0.30703 >> as you can see older version have bigger version number. > The scri

Re: [Firebird-devel] FB3 and .Net provider

2014-12-08 Thread Mark Rotteveel
On Mon, 08 Dec 2014 22:24:17 +1300, Helen Borrie wrote: >>Chapter 12 says: >> >>"An effective password, using the default user manager Srp, can be up to >>20 characters. If you have already configured the server to use legacy >>authentication (see below >>), or you intend to do so, then only the f

Re: [Firebird-devel] FB3 and .Net provider

2014-12-08 Thread Helen Borrie
At 09:31 p.m. 8/12/2014, Mark Rotteveel wrote: >On Mon, 08 Dec 2014 07:48:21 +1300, Helen Borrie >wrote: >> The release notes in your Fb3 download kit are missing the Compatibility >> chapter (Ch. 12), which explains what you need to do. >> >> Please download the newest build of the release notes

Re: [Firebird-devel] FB 3 release notes

2014-12-08 Thread Helen Borrie
At 09:03 p.m. 8/12/2014, Werner wrote: > > >I think there is a typo in the section "Execution Modes": > >It states: >Superserver is set up using the configuration SharedDatabase = true and >SharedCache = true > >but I think it should be, as the above contradicts the statement made in the >"Tabl

Re: [Firebird-devel] FB3 and .Net provider

2014-12-08 Thread Mark Rotteveel
On Mon, 08 Dec 2014 07:48:21 +1300, Helen Borrie wrote: > The release notes in your Fb3 download kit are missing the Compatibility > chapter (Ch. 12), which explains what you need to do. > > Please download the newest build of the release notes from here: > > http://web.firebirdsql.org/download/

Re: [Firebird-devel] FB 3.0 Beta 1

2014-12-08 Thread Paul Reeves
On Monday 08 December 2014 09:04:16 Werner wrote: > I would like to start testing FB 3. > > Does the installer allow installation side by side with FB 2.5? > Not really. The installer has never been designed to support anything more than simple use cases. You can run the installer but you will h

[Firebird-devel] [FB-Tracker] Created: (CORE-4635) Host a Source/Symbol server to provide an easier way to get the source/symbols when trying to debug a Firebird issue

2014-12-08 Thread JIRA
Host a Source/Symbol server to provide an easier way to get the source/symbols when trying to debug a Firebird issue Key: CORE-4635 URL: http://tr

Re: [Firebird-devel] FB3 and .Net provider

2014-12-08 Thread Mark Rotteveel
On Mon, 08 Dec 2014 08:33:59 +0100, liviuslivius wrote: > Ok, >   > now i see - .Net provider should use Legacy mode? > I wrongly supposed that it support FB3 options? > I use default from FBConfig - then i suppose it is Srp. > WireCrypt default is Enabled as i see in comments. No, it isn't the d

Re: [Firebird-devel] FB 3 release notes

2014-12-08 Thread Vlad Khorsun
08.12.2014 10:03, Werner wrote: > I think there is a typo in the section "Execution Modes": > > It states: > Superserver is set up using the configuration SharedDatabase = true and > SharedCache = true > > but I think it should be, as the above contradicts the statement made in the > "Table 3.1. M

Re: [Firebird-devel] FB3 and .Net provider

2014-12-08 Thread Helen Borrie
At 09:17 a.m. 8/12/2014, liviusliv...@poczta.onet.pl wrote: > >>The release notes in your Fb3 download kit are missing the Compatibility > >>chapter (Ch. 12), which explains what you need to do. >>Please download the > >>newest build of the release notes from here: > http://web.firebirdsql

[Firebird-devel] FB 3.0 Beta 1

2014-12-08 Thread Werner
I would like to start testing FB 3. Does the installer allow installation side by side with FB 2.5? Werner -- Download BIRT iHub F-Type - The Free Enterprise-Grade BIRT Server from Actuate! Instantly Supercharge Your Bu

[Firebird-devel] FB 3 release notes

2014-12-08 Thread Werner
I think there is a typo in the section "Execution Modes": It states: Superserver is set up using the configuration SharedDatabase = true and SharedCache = true but I think it should be, as the above contradicts the statement made in the "Table 3.1. Matrix of Working Modes" and the note just bel

Re: [Firebird-devel] Wrong version number of Firebird?

2014-12-08 Thread Philippe Makowski
Le 08/12/14 08:26, liviuslivius a écrit : > Hi, > > what chappened with version number of firebird 3? > I have current snapshot (2014-12-08) > 3.0.0.25042 > strange, I will check version should be 3.0.0.31468 -- Downl