in reply to perl DBI & SQLite

now im trying to figgure out where does SQLite store my data ?
In a file. You name it (best using the absolute path) when you connect to the database, in the DBI->connect statement. If a file of that name doesn't exist in that location, it'll be created.
does SQLite have any daemon or server ?
The "server" is embedded in the DBD driver. In other words: the DBD module directly accesses/manipulates the data in that file.
also there's like allot of modules on cpan on SQLite, i dont know wich one to use?
Just plain DBD::SQLite. On Windows, if you're using ActivePerl and you don't have a compatible C compiler (it'll work with MinGW too), use PPM to install it.

Oh, I also wholeheartedly recommend getting and using SQLite browser, a free GUI app on SourceForge.

HTH. HAND.