-3

I am new to programming in windows environment with Visual Studio most of my work is done in web and PHP .I have to build windows application for a store and the store has to add stock/make bills and sort expired products and the stuff related to stuff so what database backend should i prefer?i thought of microsoft sql but i have to install it on clients system or any simple alternative would be more helpful ?

3 Answers3

0

I asked a similar question here:

Local file-based SQL Server

I had used SQL Server previously, but like you, it had to go onto a client's computer. I'm now using "Microsoft SQL Server Compact Edition (CE)" as suggested in the answer, and this works really well as a standalone database solution.

Community
  • 1
  • 1
Dan
  • 5,692
  • 3
  • 35
  • 66
0

For deployment point of view I suggest you to use MS Access Database. It is most flexible and simple in use also. Check following link for same

http://office.microsoft.com/en-in/access/

Ankush Madankar
  • 3,689
  • 4
  • 40
  • 74
0

I am using MDB (access database), but for the next project thinking to go for SQLite.

Reason is because MDB access via OleDb is not working in 64 bit applications. You have to compile software as 32 bit, then it will work under 64 bit OS. Or other solution is to install something, called ADE, what will add provider, which solve the issue.

Sinatr
  • 20,892
  • 15
  • 90
  • 319