Free database software

Associate
Joined
4 Mar 2006
Posts
936
Location
Macclesfield
Can anyone recommend some good free database software? Is any included with windows? Or is there an easier way of doing this? I just want to make a very simple database of quotes that I like. Needs to work on Vista x64. Thanks
 
SQLExpress is free from microsoft, not sure if that is what your after... or something where you can also create forms etc like access?
 
What's a form? haha. Basically I have a load of quotes, I want to be able to easily enter them, with keywords, so that I can bring up a list of ones with a certain keyword when I want it. I'm trying it with Excel but I don't know how to make it just show me the ones with a certain keyword.
 
If you want a simple database system then if you want to pay for something use MS Access, if you want something free and similar use Open Office Base.

If thought you want to learn about databases and items like SQL, then go for SQL Express or MYSQL.

Taff
 
I wouldnt suggest SQL - its genuinely far too powerful, feature rich and complex for what the OP is looking for. It's a kin to buying a Bugatti Veyron for nipping down the shops in.

As already suggested, I'd recommend open office's Database tool so you dont have to pay for Access. :)
 
I cannot understand how he cannot already have Access if he has Excel....? Just use that

Because access is included in Office Professional, so if he has Office Standard (I'm talking pre 2007 versions here) he won't have it.

Think Office 2007 had a version Pro Professional which has Access with it (and so does Enterprise), again the standard base version won't have it.
 
if that's really all you want to do, just use a text file. Put each quote on one line. And then to get a quote based on a keyword type this in:

Code:
type quotes.txt | findstr "keyword"

to add a quote
type this:
Code:
>>quotes.txt echo this is the new quote

Simples!
 
Back
Top Bottom