473,656 Members | 2,997 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

What database?

Hello,

I need to store data in some database for my application. I need database
for easy deployment (small size), that is reliable and maybe fast.
What database is best to use in this case?

Thanks in advance,
John
Dec 6 '06 #1
17 1469
On 2006-12-06, Matko <ov************ @hotmail.comwro te:
Hello,

I need to store data in some database for my application. I need database
for easy deployment (small size), that is reliable and maybe fast.
What database is best to use in this case?

Thanks in advance,
John
If this is a small single app type database, I would look at either SQLite or
Firebird. Both have .NET data providers available. I haven't used Firebird,
but I have used SQLite a little bit and it is indeed fast and fairly capable -
and very small.

--
Tom Shelton
Dec 6 '06 #2
If this is a small single app type database, I would look at either SQLite
or
Firebird. Both have .NET data providers available. I haven't used
Firebird,
but I have used SQLite a little bit and it is indeed fast and fairly
capable -
and very small.
Hello Tom,

SQLite doesn't have cascade update and delete of records in database, so I
don't consider it as good database. What about Firebird? How much is easy to
deploy and how much is size of database compared to Access?

Regards,
John
Dec 6 '06 #3
* Matko wrote:
Hello,

I need to store data in some database for my application. I need database
for easy deployment (small size), that is reliable and maybe fast.
What database is best to use in this case?

Thanks in advance,
John

Jet?
Dec 6 '06 #4
what would the advantage of using this be over using say sql express?
I'm just about to start learning about databases, its a definate
weakness of mine. I have made access databases before (self taught) but
have always got lost when i've tried to learn how to interact c# with a
database.

I'm going to start again soon, as was going to use SQL server express
with C# express.

Is this the best way to learn?

(if it makes any difference i do have full versions of Visual Studio
and SQL server which were complimentary from an expo i attended about a
year ago, but i'm using the express editions as i'm at work and don't
have the full version with me)

Thankyou.

Gary.

Peter wrote:
If you don't absolutely have to have stored procedures, I've found that
SQLite far outperforms any other. No installation, the 2.0 ADO.NET version
includes the database engine in a single Assembly, thanks to Robert Simpson
and his excellent work:

http://sqlite.phxsoftware.com/

Peter

--
Co-founder, Eggheadcafe.com developer portal:
http://www.eggheadcafe.com
UnBlog:
http://petesbloggerama.blogspot.com


"Matko" wrote:
Hello,

I need to store data in some database for my application. I need database
for easy deployment (small size), that is reliable and maybe fast.
What database is best to use in this case?

Thanks in advance,
John

Dec 6 '06 #5
On 6 Dec 2006 04:50:02 -0800, ga********@mywa y.com wrote:
what would the advantage of using this be over using say sql express?

Well, SQL Express is
1) A 50MB download
2) Requires installation
3) Requires many more resources to run

As opposed to SQL lite which is pretty much just a DLL that you will deploy
with your application. So if your target is small footprint, SQL Lite or
SQL Compact Edition is the way to go.

So if you have
--
Bits.Bytes
http://bytes.thinkersroom.com
Dec 6 '06 #6
Matko,

For me listing to your question than any database is good enough. (Although
you have in my opinion not stated your question well if I see your comment
to Tom).

To be able to scale up in feature I would in your case use the SQLExpress or
SQLCompact edition.

In another newsgroup is Bill Vaughn, completely lyric about the last one, I
have myself no expirience with that.

However it depends of course for what you need it, and as you stated it,
again, any database is good as long as you can do a select.

Cor

"Matko" <ov************ @hotmail.comsch reef in bericht
news:el******** **@ss408.t-com.hr...
Hello,

I need to store data in some database for my application. I need database
for easy deployment (small size), that is reliable and maybe fast.
What database is best to use in this case?

Thanks in advance,
John

Dec 7 '06 #7
I don't know if Peter uses an invoice but their is a lot of samples in it.

http://www.vb-tips.com/dbpages.aspx?...6-0565bbc98609

Cor
"Matko" <ov************ @hotmail.comsch reef in bericht
news:el******** **@ss408.t-com.hr...
Hello,

I need to store data in some database for my application. I need database
for easy deployment (small size), that is reliable and maybe fast.
What database is best to use in this case?

Thanks in advance,
John

Dec 7 '06 #8
Sorry,

Wrong place

Cor

"Cor Ligthert [MVP]" <no************ @planet.nlschre ef in bericht
news:et******** ******@TK2MSFTN GP04.phx.gbl...
>I don't know if Peter uses an invoice but their is a lot of samples in it.

http://www.vb-tips.com/dbpages.aspx?...6-0565bbc98609

Cor
"Matko" <ov************ @hotmail.comsch reef in bericht
news:el******** **@ss408.t-com.hr...
>Hello,

I need to store data in some database for my application. I need database
for easy deployment (small size), that is reliable and maybe fast.
What database is best to use in this case?

Thanks in advance,
John


Dec 7 '06 #9
Hi
In my view , selecting a database should be driven from Business
Requriment. If you need to handle very huge amount of data, need lot of
flexibility, scalability, security... go for something big...
If some of the factors can be compromised then go for little smaller
version...

I mean to say requirement should force the selection of database.

database could be as small as a simple spread sheet, and JET
database...or simply can stoore in an xml file also.

It is all about what exactly you require and what not ... right now and
in future...

Thanks
-Srinivas.

Matko wrote:
Hello,

I need to store data in some database for my application. I need database
for easy deployment (small size), that is reliable and maybe fast.
What database is best to use in this case?

Thanks in advance,
John
Dec 7 '06 #10

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

Similar topics

12
1143
by: JJ | last post by:
Looking for a database for the backend to my e-commerce web site that doesn't cost the earth. Planned on using mySQL but I gather that there is no connector compatible with asp 2.0 available yet. What other options do I have? Thanks in advance,
17
1257
by: Matko | last post by:
Hello, I need to store data in some database for my application. I need database for easy deployment (small size), that is reliable and maybe fast. What database is best to use in this case? Thanks in advance, John
3
2169
by: NEWSGROUPS | last post by:
Is there any way to find out what database object or table was corrupt after a repair has run in Access 2000? If I can find this out I may find out why the corruption is happening. Any help would be appreciated. Thanks, Mark
0
8380
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
8816
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
1
8497
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 Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
8598
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 protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
5627
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
4150
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
4299
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
2721
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
1598
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

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.