473,394 Members | 1,663 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,394 software developers and data experts.

A good Database Alternative to Access & SqlServer Express?

I am getting ready to write a shareware app in .Net using C# (actually
convert a VB shareware). I currently use a third party dll for the
data management. It is called the Tsunami Record Manager. I know that
it will not work in C# so I am looking for a very light-weight
database system that will work well in C#. I really don't want to use
Access if I can help it and Sql Server Express is really overkill.
Does anyone have any suggestions?

nb

May 13 '07 #1
6 3910
On May 13, 8:27 pm, Noble <NobleB...@gmail.comwrote:
I am getting ready to write a shareware app in .Net using C# (actually
convert a VB shareware). I currently use a third party dll for the
data management. It is called the Tsunami Record Manager. I know that
it will not work in C# so I am looking for a very light-weight
database system that will work well in C#. I really don't want to use
Access if I can help it and Sql Server Express is really overkill.
Does anyone have any suggestions?

nb
Dear Noble,

You can use SQLite, a zero-configuration SQL database engine.

SQLite project site:
http://www.sqlite.org/copyright.html

Code Project sample:
http://www.codeproject.com/useritems/SQLite_GUI.asp

Good Luck!
Moty

May 13 '07 #2
"Noble" <No*******@gmail.comwrote in message
news:11**********************@e65g2000hsc.googlegr oups.com...
Does anyone have any suggestions?
http://www.microsoft.com/sql/edition...t/default.mspx
--
http://www.markrae.net

May 13 '07 #3
>I am getting ready to write a shareware app in .Net using C# (actually
convert a VB shareware). I currently use a third party dll for the
data management. It is called the Tsunami Record Manager. I know that
it will not work in C# so I am looking for a very light-weight
database system that will work well in C#. I really don't want to use
Access if I can help it and Sql Server Express is really overkill.
Does anyone have any suggestions?
What does "light-weight" mean here. Due to the nature of RDBMSs and what
they offer, I think you'll find any mainstream DB package sufficiently
weighted-down so that it's potentially unsuitable for your needs (depending
on what they are of course). If you do find something that's apparently
satisfactory, you'll also have to consider its dependablity as well. Is it
stable and reliable. Free or public domain packages are also potentially
risky simply because their backers might not be around in a couple of years
(and they could be operating out of the back of a truck for all you know).
What about just using a simple "DataSet" as-is. I'm doing exactly that for
my own app and it's perfectly fine. There are no fancy bells and whistles
such as transaction support but you get a fairly decent DB engine already
built-in for free. For projects with minimal DB requirements it works very
well and costs nothing.
May 13 '07 #4
On May 13, 8:54 pm, "Larry Smith" <no_spam@_nospam.comwrote:
I am getting ready to write a shareware app in .Net using C# (actually
convert a VB shareware). I currently use a third party dll for the
data management. It is called the Tsunami Record Manager. I know that
it will not work in C# so I am looking for a very light-weight
database system that will work well in C#. I really don't want to use
Access if I can help it and Sql Server Express is really overkill.
Does anyone have any suggestions?

What does "light-weight" mean here. Due to the nature of RDBMSs and what
they offer, I think you'll find any mainstream DB package sufficiently
weighted-down so that it's potentially unsuitable for your needs (depending
on what they are of course). If you do find something that's apparently
satisfactory, you'll also have to consider its dependablity as well. Is it
stable and reliable. Free or public domain packages are also potentially
risky simply because their backers might not be around in a couple of years
(and they could be operating out of the back of a truck for all you know).
What about just using a simple "DataSet" as-is. I'm doing exactly that for
my own app and it's perfectly fine. There are no fancy bells and whistles
such as transaction support but you get a fairly decent DB engine already
built-in for free. For projects with minimal DB requirements it works very
well and costs nothing.
Larry, You are absolutely right, he should take all these into
account.

About public domain applications: I am not sure they are not more
stable than any other products. It's true that their originators will
probably not be there in the future.
But it doesn't mean anything about the quality of the product (See all
GNU license products).
Public domain or GNU products are very powerful, especially for free
ware applications. We should take them into account.

I didn't mention SQL Server Compact since I recall it was restricted
to Windows Mobile platforms only. Now it's not anymore.

Therefor, I think Mark is right. for the purpose of compact, .NET
based applications, SQL Server compact is the best solution.

"SQL Server Compact is a free, easy-to-use, lightweight, and
embeddable version of SQL Server 2005 for developing desktop and
mobile applications."

I think that's the best choice for you, Noble. just as Mark directed.

May 13 '07 #5
I will take a look at all those. Thanks everyone for your insight.
nb

May 13 '07 #6

Discounting ALL free or public domain software due to the risk of
backers not being around is overkill. Especially since that risk
exists both with free and commercial software. Many companies build
products and then don't sell well and the products go away. That's
the same with free and commercial.

Also you have the problem with large commercial products that they
will be around but will drastically change the product forcing you to
do a lot of extra work. Countless examples of this.

SQLite is a wonderful database that has been around for about 8 years
and is used by some huge companies including Apple, Adobe, Firefox,
GE, Google.

For use in a .NET 2.0 app be sure to check out the SQLite ADO.NET
provider:

http://sqlite.phxsoftware.com/

Also if you really do have a concern about SQLite not being around,
the primary author does sell commercial licenses for SQLite which
provide support and a guarantee.

Sam

------------------------------------------------------------
We're hiring! B-Line Medical is seeking .NET
Developers for exciting positions in medical product
development in MD/DC. Work with a variety of technologies
in a relaxed team environment. See ads on Dice.com.

On Sun, 13 May 2007 13:54:35 -0400, "Larry Smith"
<no_spam@_nospam.comwrote:
>>I am getting ready to write a shareware app in .Net using C# (actually
convert a VB shareware). I currently use a third party dll for the
data management. It is called the Tsunami Record Manager. I know that
it will not work in C# so I am looking for a very light-weight
database system that will work well in C#. I really don't want to use
Access if I can help it and Sql Server Express is really overkill.
Does anyone have any suggestions?

What does "light-weight" mean here. Due to the nature of RDBMSs and what
they offer, I think you'll find any mainstream DB package sufficiently
weighted-down so that it's potentially unsuitable for your needs (depending
on what they are of course). If you do find something that's apparently
satisfactory, you'll also have to consider its dependablity as well. Is it
stable and reliable. Free or public domain packages are also potentially
risky simply because their backers might not be around in a couple of years
(and they could be operating out of the back of a truck for all you know).
What about just using a simple "DataSet" as-is. I'm doing exactly that for
my own app and it's perfectly fine. There are no fancy bells and whistles
such as transaction support but you get a fairly decent DB engine already
built-in for free. For projects with minimal DB requirements it works very
well and costs nothing.
May 14 '07 #7

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

0
by: Alain \Mbuna\ | last post by:
Hi to all. After working a while with visual basic express 2005 and SQLserver 2005 express, mainly to learn the vb language and to take my first steps with ADO.net, I decided to buy Visual Basic...
10
by: John Bunch | last post by:
I have installed Visual Studio 2005 Team Suite Beta 2, including SQL Server 2005 Express Edition April CTP, on Windows XP Professional SP2, including IIS 5.1. The SQL Server (SQLEXRPESS) service...
5
by: Dennis | last post by:
I am totally confused between Access, SQL Express, and SQL Server and MSDE and OLEDB vs SQL in .net. Please someone tell me if I"m correct in the following: With MSDE installed, I can program...
1
by: lord.zoltar | last post by:
Hi, I'm wondering how I deploy a database with an application. I know that I can require SQLServer Express to be installed, using the ClickOnce deployment system, but I also need to know how I can...
26
by: Jimmy | last post by:
ill have a database with 1 table and 3 fields: ID FIRSTNAME LASTNAME (the ID field will be the auto incrementing index) there might be 10 records in the DB, there might be 10,000. i...
13
by: Elton Cohen | last post by:
Hi newsgroup! Can anyone tell me where I should put a simple Access database file in order to be accessible for every computer in the network (same workgroup)? There does not need to be any...
5
by: Glen Buell | last post by:
Hi all, I have a major problem with my ASP.NET website and it's SQL Server 2005 Express database, and I'm wondering if anyone could help me out with it. This site is on a webhost...
7
by: Academia | last post by:
I was told that SqlServer express should get installed when VS2008Pro is installed (that is it is on the same DVD). I had a couple of errors during vs2008's installation and I don't see any...
10
by: AAaron123 | last post by:
I want to create a database with one table on the host. I can't user SQL Server Management Studio to do it so I guess I have to do it programmatically. I have in mind that in the session start...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.