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: scampbell120012000 <sca...@ya...> - 2003-10-04 22:15:46
|
I sent the previous email. here is the code I used: public static int ExecuteNonQueryFB(string connectionString, string sql) { int retval = 0; try { using (FbConnection conn = new FbConnection(connectionString)) { conn.Open(); using (FbCommand cmd = new FbCommand(sql, conn)) { cmd.CommandType = CommandType.Text; retval = cmd.ExecuteNonQuery(); } } } catch(Exception ex) { throw new CustomAppException("Error=" + ex.Message); } return retval; } |
From: scampbell120012000 <sca...@ya...> - 2003-10-04 22:10:08
|
I'm operating Firebird 1.5 rc6 under Windows XP using C# along with the Firebird .net 1.5 beta 1 provider. I'm currently just testing to determine suitability for some projects. I'm trying to create some tables, and insert data into them. I get an error "Unable to complete network request to host \"localhost\"". It usually occurs after inserting a couple thousand rows. If I debug, and breakpoint at several points, it doesn't seem to occur. Do I need to wrap all commands in a "transaction"? For this test I was using the ExecuteNonQuery method of the Command object, but without a transaction. |
From: Carlos G. A. <car...@te...> - 2003-10-04 21:27:02
|
Hello: > Insert error using .net provider W/ 1.5rc6 > > I'm operating under Windows XP using C# along with the Firebird .net 1.5 beta 1 provider. I'm currently just testing to determine suitability for some projects. I'm trying to create some tables, and insert data into them. > > I get an error "Unable to complete network request to host \"localhost\"". > > It usually occurs after inserting a couple thousand rows. If I debug, and breakpoint at several points, it doesn't seem to occur. > > Do I need to wrap all commands in a "transaction"? For this test I was using the ExecuteNonQuery method of the Command object, but without a transaction. In first place no, can you send a test case ??, the only thing that you need to have in mind when using implicit transactions is that the transaction is not committed until the command is disposed. I will try to make a test using the AS3AP test suite tomorrow ( this can do a variable number of inserts and i can modify it for use implicit transactions ). -- Best regards Carlos Guzmán Álvarez Vigo-Spain "Todos somos muy ignorantes. Lo que ocurre es que no todos ignoramos las mismas cosas." Albert Einstein. |
From: Marius P. A. <ma...@re...> - 2003-10-04 20:49:46
|
A question from firebird forum http://forums.devshed.com/t88807/s.html Insert error using .net provider W/ 1.5rc6 I'm operating under Windows XP using C# along with the Firebird .net 1.5 beta 1 provider. I'm currently just testing to determine suitability for some projects. I'm trying to create some tables, and insert data into them. I get an error "Unable to complete network request to host \"localhost\"". It usually occurs after inserting a couple thousand rows. If I debug, and breakpoint at several points, it doesn't seem to occur. Do I need to wrap all commands in a "transaction"? For this test I was using the ExecuteNonQuery method of the Command object, but without a transaction. |
From: Carlos G. A. <car...@te...> - 2003-10-04 18:58:14
|
Hello: > Can anybody help me?! > Can i recieve binary data in output parameter??? I have the change done but it needs testing, it's a big change and it's not definitive ( i'm thinking in better ways of make this ), it will allow to return correct values for output parameters and ExecuteScalar method. I'm going to tag actual CVS sources (NP_1_5_Pre_Beta_3) and then commit this change. All comments arround this change are wellcome!! -- Best regards Carlos Guzmán Álvarez Vigo-Spain "Todos somos muy ignorantes. Lo que ocurre es que no todos ignoramos las mismas cosas." Albert Einstein. |
From: Carlos G. A. <car...@te...> - 2003-10-04 14:34:51
|
Hello: > When i use SP and receive output parameters (i'm using > fbCommand.ExecuteNonQuery() method), i can't get parameter if he has type > 'bynary'. it contains int64 !!! why??? Ok this can be the blob id :) i need to read blob data in this case, i'm going to see this later today and add an nunit test for this if it's needed. > Thanks. Thanks to you :) > And sorry for my bas english :) No problem, my english is very poor :) -- Best regards Carlos Guzmán Álvarez Vigo-Spain "Todos somos muy ignorantes. Lo que ocurre es que no todos ignoramos las mismas cosas." Albert Einstein. |
From: olegmad <ol...@ya...> - 2003-10-04 13:54:51
|
I have a problem: When i use SP and receive output parameters (i'm using fbCommand.ExecuteNonQuery() method), i can't get parameter if he has type 'bynary'. it contains int64 !!! why??? And when i use SP with DataReader - all ok. I receive him and he has type 'byte[]' Can anybody help me?! Can i recieve binary data in output parameter??? Thanks. And sorry for my bas english :) |
From: Carlos G. A. <car...@te...> - 2003-10-04 10:08:45
|
Hello: > can provide example code. A sample from the NUnit test suite for binary blob write & read: public void BinaryBlobTest() { int id_value = System.DateTime.Now.Millisecond; string selectText = "SELECT blob_field FROM test_table_01 WHERE int_field = " + id_value.ToString(); string insertText = "INSERT INTO test_table_01 (int_field, blob_field) values(@int_field, @blob_field)"; Console.WriteLine("\r\n\r\nBinary Blob Test"); Console.WriteLine("Generating an array of temp data"); // Generate an array of temp data byte[] insert_values = new byte[100000*4]; RNGCryptoServiceProvider rng = new RNGCryptoServiceProvider(); rng.GetBytes(insert_values); Console.WriteLine("Executing insert command"); // Execute insert command FbCommand insert = new FbCommand(insertText, connection, transaction); insert.Parameters.Add("@int_field", FbDbType.Integer).Value = id_value; insert.Parameters.Add("@blob_field", FbDbType.Binary).Value = insert_values; insert.ExecuteNonQuery(); transaction.Commit(); Console.WriteLine("Checking inserted values"); // Check that inserted values are correct FbCommand select = new FbCommand(selectText, connection); FbDataReader reader = select.ExecuteReader(); if (reader.Read()) { if (!reader.IsDBNull(0)) { byte[] select_values = (byte[])reader[0]; for (int i = 0; i < insert_values.Length; i++) { if (insert_values[i] != select_values[i]) { throw new Exception("differences at index " + i.ToString()); } } } } Console.WriteLine("Finishing test"); reader.Close(); // Start a new Transaction transaction = connection.BeginTransaction(); } -- Best regards Carlos Guzmán Álvarez Vigo-Spain "Todos somos muy ignorantes. Lo que ocurre es que no todos ignoramos las mismas cosas." Albert Einstein. |
From: Navneet B. <nbh...@he...> - 2003-10-04 01:39:52
|
Hi, I have a field where I want to store Image. This image can be of any size between 4KB to 100 KB. I want to store this image into the firebird database, I read through the documentation and was very confused regarding the segment and reading and writing one segment at a time. I have a stream in .NET which has the image. I am confused about the following things. 1. What segment size should i define. 2. How do i read the data using .NET provider (with supose I define the segment size to 10KB) 3. How do I write the data to the database with .NET provider with insert command. 4. How do I write a procedure to insert the image to the database. 5. How do I write the data to the database with .NET provider with procedure. Can anyone please help me with this. It would be really great if you can provide example code. Thanks and Regards Navneet Bhartia |
From: Carlos G. A. <car...@te...> - 2003-10-03 17:52:35
|
Hello: > Do you know why the backup only work when I remove these options? I have added little fix to FbService.Open method for make it to work as in old 1.1 version, it's on CVS yet. -- Best regards Carlos Guzmán Álvarez Vigo-Spain "Todos somos muy ignorantes. Lo que ocurre es que no todos ignoramos las mismas cosas." Albert Einstein. |
From: Thomas J. <ja...@ma...> - 2003-10-03 16:56:15
|
Hi Carlos Version 1.5 (Beta 1 ( 2003-09-18 )) and=20 Firebird-1.5.0.3815_RC6_win32 Running as SuperServer. When I remove this line: backupSvc.Options =3D FbBackupFlags.IgnoreLimbo| FbBackupFlags.NoGarbageCollect | FbBackupFlags.MetaDataOnly; then I can make a complete backup. Any idea? But when I try to open the backup-database I get this error: Error while testing connection: ISC ERROR CODE: 335544323 ISC ERROR MESSAGE: file c:\testbackup.gdb is not a valid database Any idea why? /Thomas |
From: Carlos G. A. <car...@te...> - 2003-10-03 14:23:47
|
Hello: > Firebird-1.5.0.3815_RC6_win32 Running as SuperSerer or Classic Server ?? Here is the test case that i'm using ?? string database = @"c:\bugtracker.fdb"; FbBackup backupSvc = new FbBackup(); backupSvc.UserName = "SYSDBA"; backupSvc.UserPassword = "masterkey"; backupSvc.Database = database; backupSvc.BackupFiles.Add(new FbBackupFile(@"c:\testdb.gbk", 2048)); backupSvc.Verbose = true; backupSvc.Options = FbBackupFlags.IgnoreLimbo| FbBackupFlags.NoGarbageCollect | FbBackupFlags.MetaDataOnly; backupSvc.Start(); string lineOutput; while((lineOutput = backupSvc.GetNextLine()) != null) { Console.WriteLine(lineOutput); } backupSvc.Close(); -- Best regards Carlos Guzmán Álvarez Vigo-Spain "Todos somos muy ignorantes. Lo que ocurre es que no todos ignoramos las mismas cosas." Albert Einstein. |
From: Thomas <ja...@ma...> - 2003-10-03 13:41:28
|
Hi Carlos: I use: Version 1.5 (Beta 1 ( 2003-09-18 )) and=20 Firebird-1.5.0.3815_RC6_win32 /Thomas |
From: Carlos G. A. <car...@te...> - 2003-10-03 09:23:08
|
Hello: > When I try to backup a database I get this error: > {"No message for code 472 found.\nNo message for code 243 found.\n" } > in this line: fbBackup.Start(); I have made some tests having o problem ( Firebird 1.5 SS RC6 & Firebird Data Provider 1.5 from CVS ), wich version of Firebird and Data provider are you using ?? -- Best regards Carlos Guzmán Álvarez Vigo-Spain "Todos somos muy ignorantes. Lo que ocurre es que no todos ignoramos las mismas cosas." Albert Einstein. |
From: Carlos G. A. <car...@te...> - 2003-10-03 08:44:34
|
Hello: > I have downloaded NANT and the source... couple of questions > I modified the nant config to use .NET 1.1 - it compiles but the test units > fail (can't find a build log to see more detail as to why) You can try using -verbose option, do you have nunit installed ?? > Firing NANT in the NETFirebird_15 dir does not work as documented since > there is a mono.build file as well.. i.e. the .build file needs to be > specified Use -f:buildfile or use one of the .bat files that are in the NETFirebird_15 directory. I suggest you to get the sources from the CVS, if you can, to test the build with the new build file. > The build also goes thru OK except for the test units. > Finally - I have a dll built but not sure how to actually install this into > the managed code area so I can see it in the class browser.. If you want to install it in the GAC use GACUTIL.EXE -- Best regards Carlos Guzmán Álvarez Vigo-Spain "Todos somos muy ignorantes. Lo que ocurre es que no todos ignoramos las mismas cosas." Albert Einstein. |
From: Alan M. <al...@me...> - 2003-10-02 22:58:30
|
Carlos, I have downloaded NANT and the source... couple of questions I modified the nant config to use .NET 1.1 - it compiles but the test units fail (can't find a build log to see more detail as to why) Firing NANT in the NETFirebird_15 dir does not work as documented since there is a mono.build file as well.. i.e. the .build file needs to be specified The build also goes thru OK except for the test units. Finally - I have a dll built but not sure how to actually install this into the managed code area so I can see it in the class browser.. could you throw me some crumbs (hints) as to what I need to do to get around these issues? thanks Alan |
From: Thomas <ja...@ma...> - 2003-10-02 22:08:47
|
When I try to backup a database I get this error: {"No message for code 472 found.\nNo message for code 243 found.\n" } in this line: fbBackup.Start(); Code: .... FirebirdSql.Data.Firebird.Services.FbBackup fbBackup =3D new FbBackup(); = bool res =3D true; try { fbBackup.Verbose =3D true; fbBackup.UserName =3D user; fbBackup.UserPassword =3D password; fbBackup.Database =3D @"C:\Test\dbBackup.GDB"; fbBackup.Options =3D FbBackupFlags.IgnoreLimbo; fbBackup.BackupFiles.Add(new FbBackupFile(backupPath+backFileName, = 2048));=20 fbBackup.Start(); string lineOutput; while((lineOutput =3D fbBackup.GetNextLine()) !=3D null) { Console.WriteLine(lineOutput); } fbBackup.Close(); } catch (Exception ex) { MessageBox.Show(ex.StackTrace.ToString()); res =3D false; } ..... Any help? Regards Thomas |
From: Carlos G. A. <car...@te...> - 2003-10-02 21:19:27
|
Hello: > At this moment if i'm not wrong mayor problem is with the implementation > of Regex class in mono that is not complete and doesn't allow named > params to be used Tis problem seems to be fixed on mono 0.28 -- Best regards Carlos Guzmán Álvarez Vigo-Spain "Todos somos muy ignorantes. Lo que ocurre es que no todos ignoramos las mismas cosas." Albert Einstein. |
From: <ait...@gm...> - 2003-10-01 23:44:22
|
Hi Thomas, By the same way, using FbCommand.ExecuteNonQuery(). The following code adds a new column to a table: // Open connection FbConnection myConnection =3D new FbConnection(myConnectionString); myConnection.Open(); // Init transaction FbTransaction myTransaction =3D myConnection.BeginTransaction(); // Command FbCommand myCommand =3D new FbCommand(); myCommand.CommandText =3D "alter table MY_TABLE add NEW_COLUMN blob"; myCommand.Connection =3D myConnection; myCommand.Transaction =3D myTransaction; // Execute Update myCommand.ExecuteNonQuery(); // Commit changes myTransaction.Commit(); // Free command resources in Firebird Server myCommand.Dispose(); // Close connection myConnection.Close(); Regards, Aitor. -----Mensaje original----- De: fir...@li... [mailto:fir...@li...] En nombre de Thomas Juul Enviado el: mi=E9rcoles, 01 de octubre de 2003 0:27 Para: fir...@li... Asunto: [Firebird-net-provider] alter table, create table and drop table? To update, insert and delete table I use the FbCommand. =A0 But how do a make a ALTER Table, CREATE table or a DROP table ? =A0 Regards Thomas |
From: Thomas J. <ja...@ma...> - 2003-10-01 22:28:10
|
To update, insert and delete table I use the FbCommand. But how do a make a ALTER Table, CREATE table or a DROP table ? Regards Thomas |
From: Martin R. <ne...@mi...> - 2003-10-01 16:11:06
|
Hi, Yes it is. It is resolve me problem. I try it again. Thanks. "Carlos Guzman Alvarez" <car...@te...> píse v diskusním príspevku news:3F7...@te...... > Hello: > > > I think i have a sample working now ( i have made a test with SqlClient > and it works too ) : > > > DataSet ds = new DataSet("Areas"); > > adapter.TableMappings.Add("Areas", "BugAreas"); > adapter.TableMappings["Areas"].ColumnMappings.Add("IDAREA", "Id"); > adapter.TableMappings["Areas"].ColumnMappings.Add("NAME", "Nombre"); > adapter.Fill(ds, "Areas"); > Console.WriteLine(ds.Tables["BugAreas"].Rows[0]["Nombre"]); > > > Please tell to me if this is what you need to do :). > > > > -- > Best regards > > Carlos Guzmán Álvarez > Vigo-Spain > > > > ------------------------------------------------------- > This sf.net email is sponsored by:ThinkGeek > Welcome to geek heaven. > http://thinkgeek.com/sf > _______________________________________________ > Firebird-net-provider mailing list > Fir...@li... > https://lists.sourceforge.net/lists/listinfo/firebird-net-provider > |
From: Carlos G. A. <car...@te...> - 2003-10-01 15:13:33
|
Hello: I think i have a sample working now ( i have made a test with SqlClient and it works too ) : DataSet ds = new DataSet("Areas"); adapter.TableMappings.Add("Areas", "BugAreas"); adapter.TableMappings["Areas"].ColumnMappings.Add("IDAREA", "Id"); adapter.TableMappings["Areas"].ColumnMappings.Add("NAME", "Nombre"); adapter.Fill(ds, "Areas"); Console.WriteLine(ds.Tables["BugAreas"].Rows[0]["Nombre"]); Please tell to me if this is what you need to do :). -- Best regards Carlos Guzmán Álvarez Vigo-Spain |
From: Carlos G. A. <car...@te...> - 2003-10-01 14:56:52
|
Hello: > I sometimes get this exception: > > "A transaction is currently active. Parallel transactions are not supported." > > I am pretty sure that I only have one transactions i use. > > Any idea why I get this exception? > > I am using version 1.5 Beta 1 ( 2003-09-18 ) and Firebird-1.5.0.3815_RC6_win32 This exception gives on FbConnection.Begintransaction methods when actual transaction is not Committed or Rollbacked. -- Best regards Carlos Guzmán Álvarez Vigo-Spain |
From: Thomas <ja...@ma...> - 2003-10-01 14:38:41
|
I sometimes get this exception: "A transaction is currently active. Parallel transactions are not = supported." I am pretty sure that I only have one transactions i use. Any idea why I get this exception? I am using version 1.5 Beta 1 ( 2003-09-18 ) and = Firebird-1.5.0.3815_RC6_win32 |
From: Martin R. <ne...@mi...> - 2003-10-01 14:36:44
|
Hi, I found some info in help in Visual studio 2003 use this topic: "Setting Up DataTable and DataColumn Mappings [C#]" If you do not specify a TableName or a DataTableMapping name when calling the Fill or Update method of the DataAdapter, the DataAdapter will look for a DataTableMapping named "Table". If that DataTableMapping does not exist, the TableName of the DataTable will be "Table". You can specify a default DataTableMapping by creating a DataTableMapping with the name of "Table". The following code example creates a DataTableMapping (from the System.Data.Common namespace) and makes it the default mapping for the specified DataAdapter by naming it "Table". The example then maps the columns from the first table in the query result (the Customers table of the Northwind database) to a set of more user-friendly names in the Northwind Customers table in the DataSet. For columns that are not mapped, the name of the column from the data source is used. [C#] DataTableMapping custMap = custDA.TableMappings.Add("Table", "NorthwindCustomers"); custMap.ColumnMappings.Add( "CompanyName", "Company"); custMap.ColumnMappings.Add( "ContactName", "Contact"); custMap.ColumnMappings.Add( "PostalCode", "ZIPCode"); custDA.Fill(custDS); |