473,473 Members | 2,236 Online
Bytes | Software Development & Data Engineering Community
Create Post

Home Posts Topics Members FAQ

Easiest database to use (free)?

Hello all,
I am searching for a free database to use with .NET. I haven't worked
with databases much but can manipulate them with a small knowledge of
SQL; I need to be able to store possibly large amounts of data, and the
database should probably be only one or so files. Also, there will not
be a server in the distributed application, just the database and the
application itself. Can anybody help me?
TIA-AA
-WDaquell

Nov 22 '05 #1
13 1337
Wraith,

Are you not asking to much for free, there are people who develop for
profession, so they want to earn something.

Just my thought,

Cor
Nov 22 '05 #2
Hi,

Can you define large amounts of data?

Depending on the answer to the above, you might be able to use and MS Access
..mdb as a database.
Just to clear one common misconception up, this does *not* require that MS
Access be installed on the machine,
the mdb can be used independently.

Alternatively you might investigate using MSDE (or the up comming SQL Server
2005 Express).

Best Regards,

--
Chris Taylor
http://dotnetjunkies.com/weblog/chris.taylor

"Wraith Daquell" <WD******@gmail.com> wrote in message
news:11**********************@f14g2000cwb.googlegr oups.com...
Hello all,
I am searching for a free database to use with .NET. I haven't worked
with databases much but can manipulate them with a small knowledge of
SQL; I need to be able to store possibly large amounts of data, and the
database should probably be only one or so files. Also, there will not
be a server in the distributed application, just the database and the
application itself. Can anybody help me?
TIA-AA
-WDaquell

Nov 22 '05 #3
Wraith Daquell wrote:
Hello all,
I am searching for a free database to use with .NET. I haven't worked
with databases much but can manipulate them with a small knowledge of
SQL; I need to be able to store possibly large amounts of data, and the
database should probably be only one or so files. Also, there will not
be a server in the distributed application, just the database and the
application itself. Can anybody help me?
TIA-AA
-WDaquell


Have look at SQLite (www.sqlite.org)

HTH,
Stefan
Nov 22 '05 #4
Chris,

Alternatively you might investigate using MSDE (or the up comming SQL
Server
2005 Express).

The first has a data limit I am not sure I thought 4Gb however read in the
newsgroups 2Gb.

Cor
Nov 22 '05 #5
Wraith,

Are you not asking to much for free, there are people who develop for
profession, so they want to earn something.

Just my thought,

Cor
Nov 22 '05 #6
Hi,

Can you define large amounts of data?

Depending on the answer to the above, you might be able to use and MS Access
..mdb as a database.
Just to clear one common misconception up, this does *not* require that MS
Access be installed on the machine,
the mdb can be used independently.

Alternatively you might investigate using MSDE (or the up comming SQL Server
2005 Express).

Best Regards,

--
Chris Taylor
http://dotnetjunkies.com/weblog/chris.taylor

"Wraith Daquell" <WD******@gmail.com> wrote in message
news:11**********************@f14g2000cwb.googlegr oups.com...
Hello all,
I am searching for a free database to use with .NET. I haven't worked
with databases much but can manipulate them with a small knowledge of
SQL; I need to be able to store possibly large amounts of data, and the
database should probably be only one or so files. Also, there will not
be a server in the distributed application, just the database and the
application itself. Can anybody help me?
TIA-AA
-WDaquell

Nov 22 '05 #7
Wraith Daquell wrote:
Hello all,
I am searching for a free database to use with .NET. I haven't worked
with databases much but can manipulate them with a small knowledge of
SQL; I need to be able to store possibly large amounts of data, and the
database should probably be only one or so files. Also, there will not
be a server in the distributed application, just the database and the
application itself. Can anybody help me?
TIA-AA
-WDaquell


Have look at SQLite (www.sqlite.org)

HTH,
Stefan
Nov 22 '05 #8
Chris,

Alternatively you might investigate using MSDE (or the up comming SQL
Server
2005 Express).

The first has a data limit I am not sure I thought 4Gb however read in the
newsgroups 2Gb.

Cor
Nov 22 '05 #9
db4Objects
www.db4o.com

Extremely easy to use, works very nicely.
Just be aware that it's an object database, not a relational one, so you
work with objects & store objects.Really a nice tool, especially for smaller
projects.
They also have great newsgroup support (db4o.users).

Personally, I'm currently testing it on a several GB database and so far it
works nicely.

Regards,

Sigmund Jakhel


"Wraith Daquell" <WD******@gmail.com> wrote in message
news:11**********************@f14g2000cwb.googlegr oups.com...
Hello all,
I am searching for a free database to use with .NET. I haven't worked
with databases much but can manipulate them with a small knowledge of
SQL; I need to be able to store possibly large amounts of data, and the
database should probably be only one or so files. Also, there will not
be a server in the distributed application, just the database and the
application itself. Can anybody help me?
TIA-AA
-WDaquell

Nov 22 '05 #10
db4Objects
www.db4o.com

Extremely easy to use, works very nicely.
Just be aware that it's an object database, not a relational one, so you
work with objects & store objects.Really a nice tool, especially for smaller
projects.
They also have great newsgroup support (db4o.users).

Personally, I'm currently testing it on a several GB database and so far it
works nicely.

Regards,

Sigmund Jakhel


"Wraith Daquell" <WD******@gmail.com> wrote in message
news:11**********************@f14g2000cwb.googlegr oups.com...
Hello all,
I am searching for a free database to use with .NET. I haven't worked
with databases much but can manipulate them with a small knowledge of
SQL; I need to be able to store possibly large amounts of data, and the
database should probably be only one or so files. Also, there will not
be a server in the distributed application, just the database and the
application itself. Can anybody help me?
TIA-AA
-WDaquell

Nov 22 '05 #11
Thanks for all your responses.
This application will store student information for teachers, so
depending on how each school uses it, it could store anything from 1 to
500 students (classes, grades, etc, for every year). Sorry for not
being clearer about that.
Ziga, I'll look into db4Objects. I believe this is what I need, though
I did look into MDB (I don't own Access, though... bummer).
I'm really quite a noob when it comes to databases and such, so you may
find more ignorant questions from me in the future :) .

-WDaquell

PS Chris Taylor, are you the REAL Chris Taylor (Dungeon Siege and
all)???

Nov 22 '05 #12
Thanks for all your responses.
This application will store student information for teachers, so
depending on how each school uses it, it could store anything from 1 to
500 students (classes, grades, etc, for every year). Sorry for not
being clearer about that.
Ziga, I'll look into db4Objects. I believe this is what I need, though
I did look into MDB (I don't own Access, though... bummer).
I'm really quite a noob when it comes to databases and such, so you may
find more ignorant questions from me in the future :) .

-WDaquell

PS Chris Taylor, are you the REAL Chris Taylor (Dungeon Siege and
all)???

Nov 22 '05 #13
On 28 Apr 2005 20:19:05 -0700, "Wraith Daquell" <WD******@gmail.com> wrote:

¤ Hello all,
¤ I am searching for a free database to use with .NET. I haven't worked
¤ with databases much but can manipulate them with a small knowledge of
¤ SQL; I need to be able to store possibly large amounts of data, and the
¤ database should probably be only one or so files. Also, there will not
¤ be a server in the distributed application, just the database and the
¤ application itself. Can anybody help me?

It isn't free but you may want to check it out anyway:

http://www.vistadb.net/
Paul
~~~~
Microsoft MVP (Visual Basic)
Nov 22 '05 #14

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

Similar topics

4
by: J Sharman | last post by:
What is the easiest way to import an XML Datafeed from a URL into a MYSQL Database? Possibly using PHP Regards Joe PS Please answer to group and joe@joesharman.co.uk
1
by: windandwaves | last post by:
Hi Folk I want my clients to load up a file to a MySql database. The file should contain rows with name, email, address, city What would be the easiest way (in terms of the big picture), to...
5
by: Kevin | last post by:
Can anyone recommend the easiest way to get a full copy of a database from one server to another. The servers are not part of the same organization or network. I have received a backup of the...
4
by: Captain Wonky | last post by:
As the subject says... I'm a database novice even though I've been trying to learn Access for years. I've 'almost finished' several databases but always get stumped on something - this time it's...
2
by: Mike TI | last post by:
Mar 20, 2006 Hi All I am building an application in VB.Net 2005. I want to create a Help Doc as I go about. Can someone please guide me the easiest way to create a Help Doc for use in...
5
by: garyusenet | last post by:
Hi all, Im in the process of writing a simple application. I have a form which has on it five text boxes. I would like to store information that is entered into these text boxes in a small...
0
by: lil_chris438 | last post by:
I tried one of those online survey sites about 4 months ago that say all you have to do is spend a couple of minutes filling out some surveys and you will be making hundreds a day..... YEAH RIGHT,...
0
by: Jack | last post by:
Training Classes for Oracle10g, 9i, 8i Certification training in Oracle10g and 9i: DBA, Developer, Discoverer. training conducted at your location worldwide. Courseware licensing also available....
0
by: Winder | last post by:
Training Classes for Oracle10g, 9i, 8i Certification training in Oracle10g and 9i: DBA, Developer, Discoverer. training conducted at your location worldwide. Courseware licensing also available....
0
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,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
1
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...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
1
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...
0
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 ...
1
muto222
php
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
0
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...

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.