Choosing the right database-system for a small project

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Thomas Weholt \( PRIVAT \)

    Choosing the right database-system for a small project

    I've got a rather small project, small in the sense that there's not a lot
    of different tables needed in the database/storage-system, but there will be
    alot of data and the clients must be able to scan thru huge amounts of data
    very fast ( Not serial scanning, but lookups by key, preferrably several
    keys pr record, ie. I need to lookup people both by SSN and by
    first/last-name etc. )

    So far I've used MySQL, mainly because I need something that installs easily
    on both Linux and Windows. But I don't need a big user-management system, I
    need something light, a bit more flexible than shelve, and as I said earlier
    I need to lookup data by several key-fields.

    I've also looked at MetaKit and this seems like just my kind of thing. Easy
    to use and install. Remember that I've only looked at the docs, not tried
    anything for real. Another contender is SQLLite. It's very important that
    the system is easy to install. Anything more than "copy these files in this
    folder" or run this install-program on Windows is unacceptable, and anything
    more than configure/make/make install without lots of other library
    dependancies on Linux is also out of the question.

    Can anybody share experiences with these solutions? Speed, flexibility,
    installation issues? I intend to use this with Twisted so if there are any
    blocking issues I need to consider please let me know. Any other system I
    should take a look at ??

    Thanks a bunch,
    Thomas


  • Kevin Dahlhausen

    #2
    Re: Choosing the right database-system for a small project

    It sounds like pySqlite would fit your needs perfectly.

    Comment

    • Thomas Weholt \( PRIVAT \)

      #3
      Re: Choosing the right database-system for a small project

      Now I've looked closer at SQLite and MetaKit and they both seem great. I've
      looked for some sort of comparison but with little luck. Can anybody comment
      on what would
      be the pros and cons when the two are compared to each other ?

      I liked the fact that SQLite worked like a real SQL-database, but I also
      liked the way records turned into well-known Python-objects when fetched in
      MetaKit.

      Any comment, especially on speed and limitations found when using these two
      are interesting.

      Regards,
      Thomas


      "Thomas Weholt ( PRIVAT )" <2002@weholt.or g> wrote in message
      news:uAUJa.1825 $os2.25697@news 2.e.nsc.no...[color=blue]
      > I've got a rather small project, small in the sense that there's not a lot
      > of different tables needed in the database/storage-system, but there will[/color]
      be[color=blue]
      > alot of data and the clients must be able to scan thru huge amounts of[/color]
      data[color=blue]
      > very fast ( Not serial scanning, but lookups by key, preferrably several
      > keys pr record, ie. I need to lookup people both by SSN and by
      > first/last-name etc. )
      >
      > So far I've used MySQL, mainly because I need something that installs[/color]
      easily[color=blue]
      > on both Linux and Windows. But I don't need a big user-management system,[/color]
      I[color=blue]
      > need something light, a bit more flexible than shelve, and as I said[/color]
      earlier[color=blue]
      > I need to lookup data by several key-fields.
      >
      > I've also looked at MetaKit and this seems like just my kind of thing.[/color]
      Easy[color=blue]
      > to use and install. Remember that I've only looked at the docs, not tried
      > anything for real. Another contender is SQLLite. It's very important that
      > the system is easy to install. Anything more than "copy these files in[/color]
      this[color=blue]
      > folder" or run this install-program on Windows is unacceptable, and[/color]
      anything[color=blue]
      > more than configure/make/make install without lots of other library
      > dependancies on Linux is also out of the question.
      >
      > Can anybody share experiences with these solutions? Speed, flexibility,
      > installation issues? I intend to use this with Twisted so if there are any
      > blocking issues I need to consider please let me know. Any other system I
      > should take a look at ??
      >
      > Thanks a bunch,
      > Thomas
      >
      >[/color]


      Comment

      Working...