Application Database

  • Thread starter Thread starter Dougie
  • Start date Start date
D

Dougie

I want to include a database in an application, the application must be
deployable with it's own database system and is basically used for storing
records. Is this easy enough to build into an application?

Doug.
 
Dougie,

It's easy enough to use any database from within .NET. The issue that
you have is deploying it. If you use a database technology, I would
recommend that you look for one that has its own installer package, which
you can merge with your own install.

Personally, if the database is single user, then I would use the Jet
provider for Access and just use MDB files.

Hope this helps.
 
Thanks


Nicholas Paldino said:
Dougie,

It's easy enough to use any database from within .NET. The issue that
you have is deploying it. If you use a database technology, I would
recommend that you look for one that has its own installer package, which
you can merge with your own install.

Personally, if the database is single user, then I would use the Jet
provider for Access and just use MDB files.

Hope this helps.


--
- Nicholas Paldino [.NET/C# MVP]
- (e-mail address removed)

Dougie said:
I want to include a database in an application, the application must be
deployable with it's own database system and is basically used for storing
records. Is this easy enough to build into an application?

Doug.
 
Hi,

Depending of the complexity of the DB you could use Access for example, I
had a similar situation and what I decided was to use a XML file to store
the data, when the application runs I read it into a dataset and when I
close it I serialize the dataset back to the XML file, this is a trivial
thing to do and do not depend of any external component.


Cheers,
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top