-
How complete are your modifications?
Could they be used to make a proper BDB for .NET release for version 4.7.25?
If yes, would you be willing to contribute?
Regards,
Karl.
2009-06-30 23:37:12 UTC by kwaclaw
-
Hi Karl,
Thanks for the response. I started changing the 4.5 version to match the structs field by field with the C library. I did it succesfully for DB, DB_ENV, DB_TXN, DB_LOCK etc... In BDB 4.7 version , they have also changed all the flag values. Hence i had to match those values with 4.7. I could succesfully open the enviroment, create and open databases and transaction.
Thanks.
2009-06-30 15:34:27 UTC by karthik999
-
No, I don't think anyone has written a wrapper for 4.7.
It is not simple, as the binary layout of the structs has to match with the C library, and they change it around every time, so you have to re-check them field by field.
I plan on updating for version 4.8 (once released), but not sure how quick I can get it done.
Karl.
2009-06-30 04:08:19 UTC by kwaclaw
-
Hi,
Is there a .net wrapper for berkeleydb 4.7? If you please let me know. I downloaded the wrapper for berkeleydb 4.5 from sourceforge. I made changes for 4.7 but iam facing some problems with bdb 4.7. Kindly let me know if there exists a .net wrapper for berkeleydb 4.7.
Thanks.
2009-06-29 19:06:01 UTC by karthik999
-
Hi All,
I have created a bekeley db file, using .Net wrapper provided by sourceforge.net for libdb43.dll .
File is created successfully and is ready to use, but my problem is when i created the same file using only berkeley db in C. the two files differ in content.
the file created in C# contained some extra data than the file created in C.
After creating a file in C# i have to pass that...
2009-06-01 04:55:38 UTC by charming12
-
here you go...make sure you grab the correct version...
http://www.oracle.com/technology/software/products/berkeley-db/db/index.html.
2009-05-26 08:10:38 UTC by belsokar
-
Thanks belsokar,
But can you tell me the link where i can download Berkeley Db v 4.5.
2009-05-26 05:15:07 UTC by charming12
-
Thanks belsokar,
But can you tell me the link where i can download Berkeley Db v 4.5.
2009-05-25 05:02:08 UTC by charming12
-
If you haven't already done so, then you need to download and install Berkeley DB v4.5 from the oracle website. This will install the libdb45.dll onto your system.
If you have already done so, then it's possible your app is just not recognizing the location. I just drop it into my bin folder for the project I'm running.
2009-05-22 15:43:13 UTC by belsokar
-
Hi All,
I am new to Berkley Db and tried to configure it in my application which is developed in C#.Net.
I have downloaded libdb-dotnet_0_95 solution which is for C# .net.
After compiling the solution, it produced following assemblies:
libdb_dotNET43.dll,
libdb_dotNET45.dll,
Kds.Serialization.dll,
BerkeleyDb.Utils43.dll,
BerkeleyDb.Utils45.dll
After adding these references in...
2009-05-22 08:52:38 UTC by charming12