Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

sqlite , berkeley db benchmarking

I want to create desktop application in c# for that i want to use embedded database like (sqlite,berkeley db), so how can i start benchmarking for these databases ?

like image 969
kedar kamthe Avatar asked Dec 29 '22 20:12

kedar kamthe


1 Answers

Recently, Oracle added the sqlite3 interface on top of BDB's btree storage, so you should be able to write your code against sqlite3 and then plug in BDB. The catch is licensing. BDB forces you to either pay or go open source; sqlite let's you do whatever you want.

like image 163
broc Avatar answered Jan 01 '23 08:01

broc