CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 9 of 9

Thread: Database choice

  1. #1
    Join Date
    Jun 2010
    Posts
    3

    Database choice

    Hi I have a quick question.

    I'm writing an app that requires that I store user input. This includes lists. This app will also be distributed.

    Does anyone have a suggestion on a database that will fit my need and allow for distribution with the app?

    Thanks!

  2. #2
    Join Date
    Jul 2008
    Location
    WV
    Posts
    5,362

    Re: Database choice

    MS Access is not a bad choice if the data will remain reasonably small less than 100 megs works well. Is easy to distribute and requires no other software or special configurations.
    Always use [code][/code] tags when posting code.

  3. #3
    Join Date
    Feb 2005
    Location
    Denmark
    Posts
    742

    Re: Database choice

    If the need for database is limited to data storage, you might not even need a database and can simply write your data to a - for example - XML file and use that as storage for persistence.
    That makes for very easy distribution.

  4. #4
    Join Date
    Nov 2008
    Posts
    3

    Re: Database choice

    If you use windows and .NET you can try Eloquera Database ( www.eloquera.com ).

  5. #5
    Join Date
    Jun 2010
    Posts
    3

    Re: Database choice

    Thank you for the reply.

    Do you know if there are any license issues?

  6. #6
    Join Date
    Nov 2008
    Posts
    3

    Re: Database choice

    This database is FREE for commercial use.

  7. #7
    Join Date
    Jun 2010
    Posts
    3

    Smile Re: Database choice

    Quote Originally Posted by bablinyuk View Post
    This database is FREE for commercial use.
    Thanks for the reference. This looks like an awesome product.

    It looks really easy to use.

  8. #8
    Arjay's Avatar
    Arjay is offline Moderator / EX MS MVP Power Poster
    Join Date
    Aug 2004
    Posts
    13,490

    Re: Database choice

    Check out MS SQL Express version - it's free as well and is very simple to use with the SqlClient classes.

  9. #9
    Join Date
    Dec 2007
    Posts
    234

    Re: Database choice

    There's also SQLCE (Compact Edition) which is even easier to set up than SQL Express... just include 7 simple DLLs with the application.

    -tg
    * I don't respond to private requests for help. It's not conducive to the general learning of others.-I also subscribe to all threads I participate, so there's no need to pm when there's an update.*
    * How to get EFFECTIVE help: The Hitchhiker's Guide to Getting Help - how to remove eels from your hovercraft *
    * How to Use Parameters * Create Disconnected ADO Recordset Clones * Set your VB6 ActiveX Compatibility * Get rid of those pesky VB Line Numbers * I swear I saved my data, where'd it run off to???
    * On Error Resume Next is error ignoring, not error handling(tm). * Use Offensive Programming, not Defensive Programming.
    "There is a major problem with your code, and VB wants to tell you what it is.. but you have decided to put your fingers in your ears and shout 'I'm not listening!'" - si_the_geek on using OERN
    MVP '06-'10

Posting Permissions

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





Click Here to Expand Forum to Full Width

Featured