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.


In reply to Re: perl DBI & SQLite by bart
in thread perl DBI & SQLite by spx2

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.