Re: [Firebird-net-provider] OleDb

2006-12-15 Thread Bert Huijgen
Thanks for your answer. I wrote this code: DbProviderFactory myFactory = DbProviderFactories.GetFactory("FirebirdSql.Data.FirebirdClient"); DbConnection myConnection = myFactory.CreateConnection(); myConnection.ConnectionString = "DataSource=localhost;Database=myDB.FDB;

[Firebird-net-provider] OleDb

2006-12-15 Thread Bert Huijgen
Hi, Does Firebird support ADO.NET OleDb? I see Firebird created it's own connection and adapter classes, but this is very against the ADO.NET architecture, I think it is a very strange choice. ADO.NET has OleDb and SQL classes. SQL for the Microsoft SQL Server database, OleDb for all other databa

Re: [Firebird-net-provider] CheckBoxField

2006-11-22 Thread Bert Huijgen
Hi, Indeed, an DataGridViewCheckBoxColumn contains a TrueValue and a FalseValue. But this class is in the namespace System.Windows.Forms, and I am writing a web (ASP.NET) application, so I can not use this class. Is there a way a web application can use the CheckBoxField in combination with Fireb

Re: [Firebird-net-provider] CheckBoxField

2006-11-22 Thread Bert Huijgen
Hi, Just using 'Y' and 'N' gives the same exception. Maybe the so called TrueValue and FalseValue do the trick, but where can I find these? The .aspx file does not know them. The GridView and the DataGridColumn do not have them either. Thanks, Bert ---