Click here to Skip to main content
15,882,113 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
SQL
I want to use Embedded DB with windows runtime component using c#. if anyone have suggestion please share with reference means how to create DB and table at runtime.
I saw many DB but they all have target framework...
Posted
Comments
Narendra Dutta 8-Feb-14 19:48pm    
i dont want to use SQLite.. so please suggest except this
thatraja 10-Feb-14 3:24am    
You should have replied to the answer

1 solution

Were you planning on writing your own database engine?? Windows has a small, limited database engine built into it, called the Extensible Storage Engine[^]

Your problem is that there is no .NET wrappers that I know of to make using that engine easier in your code. You'd have to implement this wrapper yourself.

Other than that, you'd have to use a database engine, like SQLite, SQL CE, SQL Express, LocalDB, or whatever... Just Google for "Windows embedded database" and you'll come up with a ton of them.
 
Share this answer
 
v3
Comments
thatraja 10-Feb-14 3:25am    
More than enough, 5!

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900