Closed Thread
Results 1 to 7 of 7

Thread: What kind of database are suitable for this system ??

  1. #1
    EsKiMo is offline Newbie
    Join Date
    Dec 2009
    Posts
    3
    Rep Power
    0

    What kind of database are suitable for this system ??

    I'm developing a Audio Management system for my Final Year Project. Any

    suggestion for what kind of database should i use whn storing audio files and

    retrieve it and play .... the system is a standalone system .Need help

    desperately

  2. CODECALL Circuit advertisement
    Join Date
    Always
    Posts
    Many

     
  3. #2
    PGP_Protector's Avatar
    PGP_Protector is offline Programming Professional
    Join Date
    Jun 2009
    Posts
    253
    Rep Power
    11

    Re: What kind of database are suitable for this system ??

    Do you have to store your Audio Files in the database itself, or can you just store the location of the file?

  4. #3
    Join Date
    Sep 2007
    Location
    Karlstad, Sweden
    Posts
    3,082
    Blog Entries
    7
    Rep Power
    42

    Re: What kind of database are suitable for this system ??

    how big elements are you going to save? is this a web based system, a windows application or what is it based on? how will it be distributed?
    as it is a standalone system, I believe that a rdbms in general speaking of a database server is out of scale here, so more of a file database system would suit you better, maybe sqlite if your programming language supports it. what language are you going to do this in?
    __________________________________________
    I study Information Systems at Karlstad University when I'm not on CodeCall

  5. #4
    EsKiMo is offline Newbie
    Join Date
    Dec 2009
    Posts
    3
    Rep Power
    0

    Re: What kind of database are suitable for this system ??

    I'm using VB.Net .... and its a window based system... i wanted to store the

    audio files itself..hmm hmmm~~

  6. #5
    Join Date
    Sep 2007
    Location
    Karlstad, Sweden
    Posts
    3,082
    Blog Entries
    7
    Rep Power
    42

    Re: What kind of database are suitable for this system ??

    you could do it with for example sql server express, so any client it is installed on, needs such an installation, or mysql installation if you want that. another method is to use access databases, but those would many not reccomend I assume. normally, windows applications do better with savefiles instead of databases, unless it is many many posts to be searchable etc...
    __________________________________________
    I study Information Systems at Karlstad University when I'm not on CodeCall

  7. #6
    PGP_Protector's Avatar
    PGP_Protector is offline Programming Professional
    Join Date
    Jun 2009
    Posts
    253
    Rep Power
    11

    Re: What kind of database are suitable for this system ??

    Well MySQL will allow you to store BLOBS, and you can put any binary info into them, so if you want to install an Actual SQL Server MySQL would handle that.

    Or you can use SQLite, this is a single File Solution (I.E. No Database Server itself) and you can also use BLOBS using version 3.0 or greater (Current version is 3.6.21)

    But Your Database Files will get quite large and with SQLite, they don't shrink even if you delete data out of them (or at least last time I checked, they don't shrink) so if you're storing a lot of music, you're going to end up with a single massive File.


    SQLite Home Page

  8. #7
    EsKiMo is offline Newbie
    Join Date
    Dec 2009
    Posts
    3
    Rep Power
    0

    Re: What kind of database are suitable for this system ??

    Hmm~ thx for those ideas.... i'll see wat i can do bout it

    Thanks Orjan & PGP_Protector

Closed Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. Would this be a suitable spec for a programmer
    By FrEaKMaN in forum General Programming
    Replies: 3
    Last Post: 10-25-2011, 06:43 AM
  2. Am I not suitable to be a programmer?
    By uchiha_dave in forum The Lounge
    Replies: 4
    Last Post: 08-11-2010, 12:03 AM
  3. Using some kind of local database
    By Xi0N in forum Java Help
    Replies: 1
    Last Post: 05-14-2010, 11:14 AM
  4. Suitable way to program with WinForms
    By sp3tsnaz in forum C# Programming
    Replies: 4
    Last Post: 12-05-2009, 10:14 AM
  5. Replies: 1
    Last Post: 06-14-2009, 07:23 PM

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts