Jump to content

Wich database do you use


Wingens
 Share

Recommended Posts

I want to create a program/script wich uses a database to store it's data.

Now I am puzzeled by wich database server/type I should use.

 

Can you guys help me?

 

The program/script I want to create is used for multiple computers, where the insert data en read/modify it afterwords.
There is going to be adding files to a share and the links as data in de database.

Link to comment
Share on other sites

i know a lot of people that like sqlite

you have to write your own code though. We can help you, but first you have to help yourself. and it's not wich, it's which. I've noticed this a lot on forums lately.... sigh

Edited by Earthshine

My resources are limited. You must ask the right questions

 

Link to comment
Share on other sites

no worries, i figured. it's the english speaking folks I see it from most, and it really concerns and saddens me. What are they teaching the US kids? you should see the spelling atrocities, yours is like awesome by comparison, I just wanted you to know the correct word.

 

so, with sqlite, get both the 32 and 64 bit downloads, because if you do a script in 32 I think you need the 32 bit dll and 64 bit dll for 64 bit autoit scripts

Edited by Earthshine

My resources are limited. You must ask the right questions

 

Link to comment
Share on other sites

I second that about both which (albeit I'm French) and SQLite (I'm big fan).

Just a note: SQLite is an embedded RDBMS, not a client-server design. You could possibly hit some issues if your context implies a serious load under multiple concurrent accesses over a network. This is due to remote file locking bugs in almost all common OSses.

What you can do if your expected write concurrency is only minimal is develop your application using SQLite which is very easy to install (it's just one DLL) and debug things. Try it in real context and if you experience some problems you can switch to Postgres which is essentially compatible from the SQL point of view.

If you have little experience with SQL I can guide you somehow to design the DB and the queries you need.

As a first step, download and install a 3rd-party SQLite manager (I warmly recommend SQLite Expert personal edition). It allows you to create/fine tune your DB and run queries without having to write any extra code. Once the design is settled and queries run satisfactorily, start developping code.

This wonderful site allows debugging and testing regular expressions (many flavors available). An absolute must have in your bookmarks.
Another excellent RegExp tutorial. Don't forget downloading your copy of up-to-date pcretest.exe and pcregrep.exe here
RegExp tutorial: enough to get started
PCRE v8.33 regexp documentation latest available release and currently implemented in AutoIt beta.

SQLitespeed is another feature-rich premier SQLite manager (includes import/export). Well worth a try.
SQLite Expert (freeware Personal Edition or payware Pro version) is a very useful SQLite database manager.
An excellent eBook covering almost every aspect of SQLite3: a must-read for anyone doing serious work.
SQL tutorial (covers "generic" SQL, but most of it applies to SQLite as well)
A work-in-progress SQLite3 tutorial. Don't miss other LxyzTHW pages!
SQLite official website with full documentation (may be newer than the SQLite library that comes standard with AutoIt)

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

×
×
  • Create New...