 |
|
 |
I've been planing to implement this in to a small program that I'm writing (which I may release on CodeProject) but it appears that Embedded Firebird is not longer supported.
I found this: http://www.firebirdsql.org/dotnetfirebird/index.html[^] which is different from the link given to the article.
In short, the project was donated to the Core Firebird project. I thought that this was great, it might mean tighter integration.
However after some more sifting around, it appears that the project has never been updated.
To the best of my ability I've been able to determine this embedded package supports Firebird 2.0.1 on .NET 2.0. But I was hoping to use Firebird 2.1 on .NET 3.5.
But quite simply does anyone know one way or another if this project is still supported?
Thank you, Frank
|
| Sign In·View Thread·PermaLink | 5.00/5 (1 vote) |
|
|
|
 |
|
|
 |
|
 |
Ahh, I see. I was looking at the wrong pages. How confusing.
Anyway, I actually decided to go with SQLite for my project. Same concept but so far support has been better for it. Plus, I'm too deep in now to switch back.
Thank you for your reply and the information!
Regards, Frank
|
| Sign In·View Thread·PermaLink | |
|
|
|
 |
|
|
 |
|
 |
Hi, i switched from Super Server 2.0 to embedded version.
Everything almost ok, select, inserts, deletes work fine. However, stored procedures won't work at all, which of course worked well on the SuperServer.
Is this normal? Is there something to change on those procedures in order to get them working?
Thanks for your time folks.
Daniel Sovino
|
| Sign In·View Thread·PermaLink | |
|
|
|
 |
|
|
 |
|
 |
.fdb stands for firebird database.
You "change" it by using firebirdsql to access it, sending mysql commands to edit,add to, and remove from it.
|
| Sign In·View Thread·PermaLink | |
|
|
|
 |
|
 |
Please, help! When compile example sources myself, at runtime exception occured "Unable to load DLL 'fbembed'" I put fbembed.dll in bin/Debug path, but still not work((
|
| Sign In·View Thread·PermaLink | |
|
|
|
 |
|
 |
jet85 wrote: When compile example sources myself, at runtime exception occured "Unable to load DLL 'fbembed'" I put fbembed.dll in bin/Debug path, but still not work((
I am having the same problem. I am working with C#, .NET 2.0. The Firebird DB is version 2. I can connect to the embedded database with IBExpert. I have the embedded engine and Firebird client installed and a reference to it added to my project. Is there something else I'm missing?
Thanks! TC
|
| Sign In·View Thread·PermaLink | |
|
|
|
 |
|
 |
I solved this problem. Files icudt30.dll, icuin30.dll, icuuc30.dll must also putted in work directory. I think it relevant only for Firebird version 2.
What is mission of these files? And how to use fb without them?
|
| Sign In·View Thread·PermaLink | |
|
|
|
 |
|
 |
I forgot I had posted this question. I figured it out yesterday morning and got my connection to open! Now I just need to figure out how to add the Firebird db to my data sources in VS 2005...
TC
|
| Sign In·View Thread·PermaLink | |
|
|
|
 |
|
 |
In some cases this still is not enough. For example on a win2003 server it's impossible to get such an application run. I've trying now to include also the irectory Intl from the FBEmbed setup...
Also someone said that putting the above mentioned DLLs (fbemned, icuuc30, etc.) to the windows\system32 will solve the problem, but didnt
C#, ASPX, SQL, novice to NHibernate
|
| Sign In·View Thread·PermaLink | |
|
|
|
 |
|
|
 |
|
 |
From the Firebird FAQ[^] it seems that Firebird uses a DLL called Fbembed.dll that is not managed. That is, embedding Firebird is unsafe in the C# / common language infrastructure sense of "unsafe". This means that an application that embeds Firebird cannot be installed in scenarios that require safe (trusted) applications. I wanted to point this out in case anyone else, like me, was searching for a safe embeddable SQL database setup.
SQLite with System.Data.SQLite seems to have the same characteristics.
The search continues..
By the way, does the term "embedded database" used in this article have a standard meaning? There is no Wikipedia entry for it.
|
| Sign In·View Thread·PermaLink | |
|
|
|
 |
|
|
 |
|
 |
Since the password for the Firebird database is not stored in the db there is no point of doing that. If someone copies your db she/he will be able to open it with the default sysdba/masterkey. The user/password has a meaning and point when remote users are connecting to a Firebird server (when you can't get physical access to the db).
I think this is how it works on Fb.
|
| Sign In·View Thread·PermaLink | |
|
|
|
 |
|
 |
The default administrative account is sysdba, with password masterkey (masterke, actually, since passwords are eight-characters long). Change this ASAP using the gsec.exe command-line utility ("gsec -user sysdba -password masterkey"; once in the shell, "modify sysdba -pw mynewpassword", followed by "quit").
|
| Sign In·View Thread·PermaLink | 1.00/5 (1 vote) |
|
|
|
 |
|
 |
Hi;
I need some help connecting to a regular 1.5 Firebird database using VB.Net. Here's a sample of what I have and the error I'm getting. (I should point that I'm totally new to VB.Net)
Public Class Form1
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
Dim myConnection As FbConnection Dim myCommand As FbCommand
.....
The errors tell me that the FbConnection and FbCommand are undefined types. I have FirebirdClient-2.0 installed. I'm obviously leaving out whatever defines FbConnection and FbCommand, however I have know idea what I'm missing and could use a bit of assistance.
Thanks
|
| Sign In·View Thread·PermaLink | |
|
|
|
 |
|
|
 |
|
 |
I installed the demo source for this article,
Embedded Firebird: Full-Featured Embedded Database with 2 MB Runtime By Dan Letecky.
when I build the application I get this error
Error 1 The type or namespace name 'FirebirdSql' could not be found (are you missing a using directive or an assembly reference?) C:\firebirdASP\EmbeddedFirebirdExample\Form1.cs 7 7 EmbeddedFirebirdExample
I installed the ado.net provider, the using directive is there, and the assembly reference what am I missing?? in visual studio 2005, how should I check if the provider is properly installed?
is there another demo code somewhere with detailled steps on installing the provider?
I am new at this, and probably missing a step can somebody please help Daniel
|
| Sign In·View Thread·PermaLink | |
|
|
|
 |
|
 |
You need to install the Firebird.Net provider too. Usually it installs to C:\Program Files\FirebirdNETProvider1.7 Then you need to add a reference to the "FirebirdSql.Data.Firebird.dll" file. It is just like using any other assembly.
|
| Sign In·View Thread·PermaLink | |
|
|
|
 |
|
 |
Thanks for the reply
isn't FireBirdSQL.Data.FirebirdClient not the provider for .net 2.0? or I need to install both?
if not what is it? Daniel
|
| Sign In·View Thread·PermaLink | |
|
|
|
 |
|
 |
When you're adding the reference you will see something similar "Firebird .Net Data Provider" after you installed the Firebird .Net provider.
newgendb wrote: FireBirdSQL.Data.FirebirdClient not the provider for .net 2.0? or I need to install both?
From where you got that ?
|
| Sign In·View Thread·PermaLink | |
|
|
|
 |
|
 |
thanks
from here, it just confuse me
http://firebird.sourceforge.net/index.php?op=files&id=netprovider
Daniel
|
| Sign In·View Thread·PermaLink | |
|
|
|
 |
|
|
 |