You can subscribe to this list here.
2002 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(10) |
Nov
(55) |
Dec
(36) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2003 |
Jan
(38) |
Feb
(108) |
Mar
(79) |
Apr
(95) |
May
(64) |
Jun
(130) |
Jul
(146) |
Aug
(121) |
Sep
(96) |
Oct
(149) |
Nov
(161) |
Dec
(113) |
2004 |
Jan
(113) |
Feb
(163) |
Mar
(248) |
Apr
(132) |
May
(157) |
Jun
(160) |
Jul
(236) |
Aug
(284) |
Sep
(293) |
Oct
(277) |
Nov
(257) |
Dec
(356) |
2005 |
Jan
(203) |
Feb
(190) |
Mar
(220) |
Apr
(165) |
May
(124) |
Jun
(160) |
Jul
(190) |
Aug
(142) |
Sep
(152) |
Oct
(189) |
Nov
(187) |
Dec
(159) |
2006 |
Jan
(170) |
Feb
(151) |
Mar
(212) |
Apr
(262) |
May
(226) |
Jun
(196) |
Jul
(223) |
Aug
(165) |
Sep
(163) |
Oct
(348) |
Nov
(225) |
Dec
(141) |
2007 |
Jan
(261) |
Feb
(161) |
Mar
(222) |
Apr
(193) |
May
(121) |
Jun
(157) |
Jul
(151) |
Aug
(159) |
Sep
(61) |
Oct
(123) |
Nov
(172) |
Dec
(96) |
2008 |
Jan
(104) |
Feb
(138) |
Mar
(131) |
Apr
(131) |
May
(74) |
Jun
(107) |
Jul
(89) |
Aug
(89) |
Sep
(172) |
Oct
(158) |
Nov
(119) |
Dec
(86) |
2009 |
Jan
(52) |
Feb
(84) |
Mar
(78) |
Apr
(83) |
May
(54) |
Jun
(79) |
Jul
(60) |
Aug
(62) |
Sep
(50) |
Oct
(147) |
Nov
(50) |
Dec
(70) |
2010 |
Jan
(135) |
Feb
(113) |
Mar
(74) |
Apr
(93) |
May
(35) |
Jun
(71) |
Jul
(33) |
Aug
(110) |
Sep
(47) |
Oct
(18) |
Nov
(61) |
Dec
(34) |
2011 |
Jan
(46) |
Feb
(47) |
Mar
(25) |
Apr
(24) |
May
(21) |
Jun
(22) |
Jul
(20) |
Aug
(51) |
Sep
(31) |
Oct
(42) |
Nov
(22) |
Dec
(22) |
2012 |
Jan
(31) |
Feb
(19) |
Mar
(25) |
Apr
(55) |
May
(16) |
Jun
(28) |
Jul
(33) |
Aug
(25) |
Sep
(32) |
Oct
(25) |
Nov
(52) |
Dec
(35) |
2013 |
Jan
(43) |
Feb
(18) |
Mar
(36) |
Apr
(45) |
May
(22) |
Jun
(13) |
Jul
(31) |
Aug
(24) |
Sep
(19) |
Oct
(59) |
Nov
(47) |
Dec
(25) |
2014 |
Jan
(27) |
Feb
(15) |
Mar
(38) |
Apr
(10) |
May
(15) |
Jun
(36) |
Jul
(24) |
Aug
(28) |
Sep
(16) |
Oct
(6) |
Nov
(44) |
Dec
(40) |
2015 |
Jan
(52) |
Feb
(22) |
Mar
(13) |
Apr
(17) |
May
(22) |
Jun
(36) |
Jul
(18) |
Aug
(41) |
Sep
(71) |
Oct
(60) |
Nov
(49) |
Dec
(43) |
2016 |
Jan
(60) |
Feb
(13) |
Mar
(21) |
Apr
(28) |
May
(23) |
Jun
(39) |
Jul
(17) |
Aug
(37) |
Sep
(33) |
Oct
(15) |
Nov
(22) |
Dec
(20) |
2017 |
Jan
(27) |
Feb
(40) |
Mar
(48) |
Apr
(19) |
May
(29) |
Jun
(2) |
Jul
(19) |
Aug
(36) |
Sep
(18) |
Oct
(10) |
Nov
(11) |
Dec
(5) |
2018 |
Jan
(5) |
Feb
(4) |
Mar
(5) |
Apr
(3) |
May
(4) |
Jun
(17) |
Jul
(7) |
Aug
(7) |
Sep
(12) |
Oct
(8) |
Nov
(2) |
Dec
|
2019 |
Jan
(8) |
Feb
(5) |
Mar
(3) |
Apr
(5) |
May
(3) |
Jun
(2) |
Jul
(8) |
Aug
(7) |
Sep
(3) |
Oct
(12) |
Nov
(7) |
Dec
(1) |
2020 |
Jan
(8) |
Feb
(3) |
Mar
(7) |
Apr
(1) |
May
(2) |
Jun
(1) |
Jul
(3) |
Aug
(25) |
Sep
(5) |
Oct
(3) |
Nov
(7) |
Dec
(16) |
2021 |
Jan
(11) |
Feb
(10) |
Mar
(16) |
Apr
(8) |
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: JS.staff <jsp...@ec...> - 2004-03-11 11:32:13
|
Does the FbCommandBuilder compare all fields when doing update & deletes, or just the primary key? =20 I've just thinking about my timestamp problem - I've removed the timestamp from the PK, but obviously if the commandbuilder is comparing every row for updates, I need to change this behaviour! =20 Thanks, =20 John |
From: Tony R. <Ton...@jf...> - 2004-03-11 10:45:01
|
Using FB.NET provider 1.5.1517.216 =20 I have the following SP, what is the best way of calling it (Note code is in Delphi, but any language will do) =20 CREATE PROCEDURE TEST ( ID_IN INTEGER) RETURNS ( ID_OUT INTEGER) AS BEGIN ID_OUT =3D ID_IN + 1; SUSPEND; END =20 I have got.. ac :=3D FbCommand.Create('EXECUTE PROCEDURE TEST(@ID_IN,@ID_OUT)',adm.Connection); ac.Parameters.Add('@ID_IN',FbDBType.Integer,).Direction :=3D ParameterDirection.Input; ac.Parameters.Add('@ID_OUT',FbDBType.Integer).Direction :=3D ParameterDirection.Output; ac.Parameters[0].Value :=3D TObject(Int32(10)); ac.ExecuteNonQuery; =20 But I get the following at the executeNonQuery line... =20 ##### =20 FirebirdSql.Data.Firebird.FbException : Dynamic SQL Error parameter mismatch for procedure TEST =20 ----> FirebirdSql.Data.Firebird.Gds.GdsException : Exception of type FirebirdSql.Data.Firebird.Gds.GdsException was thrown. ###### Tony Rivron =20 This message has been scanned for viruses by MailControl - www.mailcontrol.= com |
From: Oleg U. <ol...@ya...> - 2004-03-11 10:44:07
|
Can i use this method for recieve table schema of select stored procedure? I try do this thing, but i catch exception: ---------------- An unhandled exception of type 'FirebirdSql.Data.Firebird.FbException' occurred in system.data.dll Additional information: Dynamic SQL Error SQL error code = -204 Table unknown TEST_SELECT At line 1, column 15 ----------------- My code sample: using (FbConnection connection = new FbConnection(ConnectionString)) { connection.Open(); FbTransaction transaction = connection.BeginTransaction(); FbCommand selectCommand = new FbCommand("TEST_SELECT", connection, transaction); selectCommand.CommandType = CommandType.StoredProcedure; FbDataAdapter adapter = new FbDataAdapter(selectCommand); DataTable table = new DataTable(); adapter.FillSchema(table, SchemaType.Source); transaction.Commit(); } |
From: benny <be...@ch...> - 2004-03-11 08:54:52
|
Hi,=20 I tried installing the FirebirdNETProvider1.5-NET1.1, there are = sample for me to tried - CSharpExample.aspx, and VBNETExample.aspx ... I could run the CSharpExample.aspx successfully that prove I could = connect to Firebird1.5RC7 that I am using ... But I failed to run the = sample VBNETExample.aspx. I have the following error while running on Web Matrix0.5:- BC30451: Name 'FbDbType' is not declared. Source Error: Line 69: myCommand =3D new FbCommand(selectCmd, myConnection, = MyTxn) Line 70: =20 Line 71: myCommand.parameters.add("@EMP_NO", FbDbType.SmallInt) Why? Anyone there know any configuration I missed out during = installation of FirebirdNETProvider1.5-NET1.1 or any mistake I might = made?=20 TIA=20 regards, benny ;)=20 |
From:
<car...@te...> - 2004-03-10 18:45:04
|
Hello: > Still, I guess timestamp behaviour should be deterministic! ;) After review how Jaybird people is handling the millisconds i have made some changes in the 1.6 sources for try to handle it, if the changes works well i will do the backport of these changes to the 1.5 if possible. -- Best regards Carlos Guzmán Álvarez Vigo-Spain |
From:
<car...@te...> - 2004-03-10 17:58:58
|
Hello: > Yes, in two weeks. I have committed new nunit test case for this error into the CVS, in both 1.5 and 1.6 sources. -- Best regards Carlos Guzmán Álvarez Vigo-Spain |
From:
<car...@te...> - 2004-03-10 16:09:29
|
Hello: > I hope that you understand what I am asking. I'm not sure if i understand well, sorry. If what you need is tat the values of an "auntoinc" field to be generated in the server, i think you will need to use generators and triggers ( Before insert ). -- Best regards Carlos Guzmán Álvarez vigo-Spain |
From:
<car...@te...> - 2004-03-10 15:10:14
|
Hello: > Although the first query returns a value, the second sometimes fails to > return a row! Possibly some precision failure in the conversion between > FB timestamps and .NET datetimes???? Huummmm ... maybe the problem is with the milliseconds ... -- Best regards Carlos Guzmán Álvarez Vigo-Spain |
From: Inter-Biz, U. u i. <ne...@in...> - 2004-03-10 14:45:18
|
Does Firebird.NET provide disconnected mode or it is using Transactions to work with multi-user access? For example if I us DataAdapter to get local copy of data from certain table, and then I change and insert new records in this table. One of fields is autoinc field. There can be many users making new inserts on their client PCs (to same table). Does Firebird.NET emulate MS disconnected mode presented for e.g. SQLServer (meaning, when calling Update data are transfered to DataSource, and autoinc fields are recreated on server - values can differ from those defined in local table)? I hope that you understand what I am asking. I worked with FB using Delphi 7, but now I started using VC#.NET and I have some little experience when using SQL Server with it. |
From: JS.staff <jsp...@ec...> - 2004-03-10 14:32:23
|
Are there any known issues with comparing equality of timestamps?? with .NET datetime values. =20 I've got a table with a PK made up of int 'numberpk', varchar(20) 'textpk' and a timestamp 'whenstarted'. =20 I do something like : select max(whenstarted) from mytable where numberpk =3D @num and textpk =3D @text =20 This correctly returns a datetime into .net. =20 Then I do: select * from mytable where numberpk =3D @num and textpk =3D @text and whenstarted =3D @valuefromlastquery =20 Although the first query returns a value, the second sometimes fails to return a row! Possibly some precision failure in the conversion between FB timestamps and .NET datetimes???? =20 A test case is difficult to provide, because if I type the date into the record again, the problem goes away! =20 Thanks, =20 John |
From: Alessandro P. <pet...@in...> - 2004-03-10 13:41:19
|
"Carlos Guzmán Álvarez" <car...@te...> ha scritto nel messaggio news:404...@te...... > Hello: > > > latest changes breaks 1.5 stability. > > If I try to fill a dataset with an empty result set (using a stored > > procedure), the following exception occurs: > > Thanks, i think it will be fixed in the CVS now, sorry for the > inconvenience. Confirmed working. Thank you very much. -- Alessandro Petrelli. |
From:
<car...@te...> - 2004-03-10 13:09:47
|
Hello: > latest changes breaks 1.5 stability. > If I try to fill a dataset with an empty result set (using a stored > procedure), the following exception occurs: Thanks, i think it will be fixed in the CVS now, sorry for the inconvenience. -- Best regards Carlos Guzmán Álvarez Vigo-Spain |
From: Alessandro P. <pet...@in...> - 2004-03-10 12:35:38
|
Hello Carlos, latest changes breaks 1.5 stability. If I try to fill a dataset with an empty result set (using a stored procedure), the following exception occurs: [NullReferenceException: Riferimento a un oggetto non impostato su un'istanza di oggetto.] FirebirdSql.Data.Firebird.FbDataReader.Read() +67 FirebirdSql.Data.Firebird.FbDataReader.Close() +44 FirebirdSql.Data.Firebird.FbDataReader.Dispose(Boolean disposing) +23 FirebirdSql.Data.Firebird.FbDataReader.System.IDisposable.Dispose() +17 System.Data.Common.DbDataAdapter.FillFromCommand(Object data, Int32 startRecord, Int32 maxRecords, String srcTable, IDbCommand command, CommandBehavior behavior) +304 System.Data.Common.DbDataAdapter.Fill(DataSet dataSet, Int32 startRecord, Int32 maxRecords, String srcTable, IDbCommand command, CommandBehavior behavior) +77 System.Data.Common.DbDataAdapter.Fill(DataSet dataSet) +38 My code: FbCommand cmd = new FbCommand("SP_COUNTRY_LIST", conn); cmd.CommandType = CommandType.StoredProcedure; FbDataAdapter adapter = new FbDataAdapter(); DataSet ds = new DataSet(); adapter.SelectCommand = cmd; adapter.Fill(ds); adapter.Dispose(); cmd.Dispose(); conn.Close(); conn.Dispose(); -- Alessandro Petrelli. |
From:
<car...@te...> - 2004-03-10 10:27:32
|
Hello: > I wonder if there exists an Borland BDP driver for Firebird? No yet. > If it doesn't exist then are there any plans for creating one? Yes, there are plans for it. -- Best regards Carlos Guzmán Álvarez Vigo-Spain |
From: Johannes <n@n.com> - 2004-03-10 10:17:03
|
Hi, I wonder if there exists an Borland BDP driver for Firebird? If it doesn't exist then are there any plans for creating one? Thanks Johannes |
From:
<car...@te...> - 2004-03-10 09:59:06
|
Hello: > Carlos has fought against the very same problem (but surfacing for UTF-8, > where all strings get triple length) for the .NET-provider. > > Perhaps his solution (if any) can be ported to ODBC. Finally i have implemented your solution in the 1.6 sources, i need to do more tests, but for now seems to be working. It looks like this when reading char values: string s = this.ReadString( field.Charset.Encoding, field.Length); if ((field.Length % field.Charset.BytesPerCharacter) == 0 && s.Length > field.CharCount) { fieldValue = s.Substring(0, field.CharCount); } else { fieldValue = s; } I have applied a similar one for the char parameter values (committed today): string svalue = sqldata.ToString(); if ((param.Length % param.Charset.BytesPerCharacter) == 0 && svalue.Length > param.CharCount) { throw new IscException(335544321); } this.WriteOpaque( param.Charset.Encoding.GetBytes(svalue), param.Length); -- Best regards Carlos Guzmán Álvarez Vigo-Spain |
From: Peter J. <pj...@wa...> - 2004-03-10 08:52:45
|
Hi Shum, All, "Shum W.C." <sh...@mi...> wrote: > I use BIG-5 Character set (Traditional Chinese Character) > > I have the following problem after fetched fireBird through IBPhoenix ODBC > > the result data (string type) always double the length: > > for examples: > 1.) I get "Y " instead of "Y" even the field is defined as CHR(1) > 2.) "ABC " instead of "ABC even the field is definec as CHR(3) Carlos has fought against the very same problem (but surfacing for UTF-8, where all strings get triple length) for the .NET-provider. Perhaps his solution (if any) can be ported to ODBC. Regards, Peter Jacobi |
From:
<car...@te...> - 2004-03-09 14:50:47
|
Hello: > Is the .NET 1.1 Data Provider compatible with the Firebird 1.0 engine, or > does it require a later version? It needs to work with Firebird 1.0 ( but there will things, like savepoints, that will work only with Firebird 1.5 ) -- Best regards Carlos Guzmán Álvarez Vigo-Spain |
From: dwds <dw...@tr...> - 2004-03-09 14:45:31
|
Is the .NET 1.1 Data Provider compatible with the Firebird 1.0 engine, or does it require a later version? Thanks Dave White |
From: Tobias G. <tob...@ca...> - 2004-03-09 13:03:11
|
Tobias Grimm wrote: > When I then try to create a table using the Embedded server, I get an > FBException "unsuccessful metadata updateTABLEA". Thanks to Carlos, I finally figured out what the problem was. The fbintl.dll needs to be copied to the "intl" subdirectory under the applications directory, not the application directory itself. bye, Tobias |
From: Claudinei R. <ne...@ac...> - 2004-03-09 12:18:45
|
Hi, =20 My name is Nei and I'd like to know if anybody have any tutorial about the Firebird .NET. I'm using Delphi 8 and I don't know to use this driver. =20 Thanks. =20 =20 |
From:
<car...@te...> - 2004-03-09 10:45:26
|
Hello: > Would a new version be released, e.g, 1.5.2 Yes, in two weeks. > or would I have to grab the code from CVS and > build it myself? I've never had to do that with any open-source project, > but if that's what's necessary, then I'll figure it out. I can send to you the new dll built from CVS if you want it. -- Best regards Carlos Guzmán Álvarez Vigo-Spain |
From:
<car...@te...> - 2004-03-09 10:44:09
|
Hello: > I think it's right! > When you commit this changes? I'd like to test it. :) It's on CVS yet, in both 1.5 and 1.6 sources thanks very much -- Best regards Carlos Guzmán Álvarez Vigo-Spain |
From: Derek M. A. Lee-W. <de...@fa...> - 2004-03-09 08:02:22
|
> > Is this a defect in the .NET provider > > Yes, i will fix it tomorrow, thanks very much. Great. Thanks. Once it is fixed, how would I get the updated code? Would a new version be released, e.g, 1.5.2, or would I have to grab the code from CVS and build it myself? I've never had to do that with any open-source project, but if that's what's necessary, then I'll figure it out. Derek -- Derek M. A. Lee-Wo Email: (Home) de...@le... (Work) dl...@vo... Fax: (US) 413-826-0641 (UK) 08701 338414 "Those who will not risk cannot win" - John Paul Jones |
From: Oleg U. <ol...@ya...> - 2004-03-09 07:45:03
|
> Opinions ?? I think it's right! When you commit this changes? I'd like to test it. :) |