From: Jim M. <jim...@co...> - 2003-08-27 21:45:56
|
The Visual Studio about box says 1.0. How do you check? I think you may be right because I got the same result with the example code: private void cmdConnect_Click(object sender, System.EventArgs e) { string myConnectionString; FbConnection myConnection; FbTransaction myTransaction; string commandText; myConnectionString = "User=SYSDBA;" + "Password=masterkey;" + "Database=C:\\Program Files\\Firebird\\examples\\employee.gdb;" + "DataSource=localhost;" + "Port=3050;" + "Dialect=3;" + "Charset=ISO8859_1;" + "Role=;" + "Connection lifetime=30;" + "Pooling=true;" + "Packet Size=8192"; myConnection = new FbConnection(myConnectionString); myConnection.Open(); myTransaction = myConnection.BeginTransaction(); lblStatus.Text = "Connection succeful"; myConnection.Close(); } "Carlos Guzman Alvarez" <car...@te...> wrote in message news:3F4...@te...... > Hello: > > > firebird net provider 1.0.1241.28320. > > Built for .NET 1.0 or 1.1 ?? Ususally this problems is caused for a bad > installation of the .NET or for use the provider build for a version of > the .net framework with a different version. > > > > > > > > -- > 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 > |