[Firebird-devel] Error messages how-to

2014-08-12 Thread Dimitry Sibiryakov
Hello, All. Is there a simple step-by-step guide how to add new error codes and corresponding messages into the engine and firebird.msg? -- WBR, SD. -- Firebird-Devel mailing list, web interface at

Re: [Firebird-devel] Error messages how-to

2014-08-12 Thread Dimitry Sibiryakov
12.08.2014 15:51, Dmitry Yemanov wrote: 1) Choose the facility for your error How to choose between JRD and DSQL? -- WBR, SD. -- Firebird-Devel mailing list, web interface at

Re: [Firebird-devel] Error messages how-to

2014-08-12 Thread Mark Rotteveel
On Tue, 12 Aug 2014 17:51:36 +0400, Dmitry Yemanov firebi...@yandex.ru wrote: 12.08.2014 17:34, Dimitry Sibiryakov wrote: Is there a simple step-by-step guide how to add new error codes and corresponding messages into the engine and firebird.msg? 1) Choose the facility for your error 2)

Re: [Firebird-devel] Error messages how-to

2014-08-12 Thread Dmitry Yemanov
12.08.2014 18:03, Mark Rotteveel wrote: Doesn't this miss a add specific standard (or vendor-specific) SQL state somewhere? It's hidden inside item (3) ;-) Dmitry -- Firebird-Devel mailing list, web interface at

Re: [Firebird-devel] Error messages how-to

2014-08-12 Thread Jim Starkey
Sigh. There used to be database based system to create and edit messages and generate header and message files. Very handy using a database to develop a database system. On Aug 12, 2014, at 9:34 AM, Dimitry Sibiryakov s...@ibphoenix.com wrote: Hello, All. Is there a simple

Re: [Firebird-devel] Error messages how-to

2014-08-12 Thread Dimitry Sibiryakov
12.08.2014 18:17, Jim Starkey wrote: There used to be database based system to create and edit messages and generate header and message files. Yes, I know that because I am exactly that guy who killed this system because database isn't suitable for CVS. -- WBR, SD.

Re: [Firebird-devel] Error messages how-to

2014-08-12 Thread Ann Harrison
On Aug 12, 2014, at 1:17 PM, Jim Starkey j...@jimstarkey.net wrote: Sigh. There used to be database based system to create and edit messages and generate header and message files. Very handy using a database to develop a database system. Please lets not get into the moral and

Re: [Firebird-devel] Error messages how-to

2014-08-12 Thread Dalton Calford
Hi Dimitry, May I ask why you say a database system is not suitable for CVS? I had ours on cvs for a few years before moving it to git. If you view the operational database as source code, then I can understand your point, but, I view an operational database as a compiled end product while the

Re: [Firebird-devel] Error messages how-to

2014-08-12 Thread Mark Rotteveel
On 12-8-2014 19:22, Dalton Calford wrote: May I ask why you say a database system is not suitable for CVS? I had ours on cvs for a few years before moving it to git. If you view the operational database as source code, then I can understand your point, but, I view an operational database as

Re: [Firebird-devel] Error messages how-to

2014-08-12 Thread Dalton Calford
Hi Mark, If I understand your message, I am still confused by the statement. I would never, ever put a binary such as a database or compiled executable into a version control system, but, there is nothing preventing my extracting the DML (insert into foo .values..) and inserting that

Re: [Firebird-devel] Error messages how-to

2014-08-12 Thread Mark Rotteveel
On 12-8-2014 19:37, Dalton Calford wrote: If I understand your message, I am still confused by the statement. I would never, ever put a binary such as a database or compiled executable into a version control system, but, there is nothing preventing my extracting the DML (insert into foo

Re: [Firebird-devel] Error messages how-to

2014-08-12 Thread Dimitry Sibiryakov
12.08.2014 19:37, Dalton Calford wrote: I would never, ever put a binary such as a database or compiled executable into a version control system, but, there is nothing preventing my extracting the DML (insert into foo .values..) and inserting that into the version control system.