Data Storage Options

  • Thread starter Thread starter Kev
  • Start date Start date
K

Kev

Heya,

I have a Service coded in C# which requires a database. I do not
want to use a full blown SQL Server Database (nor deal with the
licensing) to handle the data storage. Is there a solid way of
storing the data in a single file while at the same time accessing it
using SQL?

~~K
 
Kev said:
Heya,

I have a Service coded in C# which requires a database. I do not
want to use a full blown SQL Server Database (nor deal with the
licensing) to handle the data storage. Is there a solid way of
storing the data in a single file while at the same time accessing it
using SQL?

~~K

Well if it's just the licensing, you can use MSDE.
Otherwise, just use a Microsoft Access database.

David
 
If you want speed and small size use Codebase. We have
found it to be a lot faster than SQL and smaller.
 
Back
Top