CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 9 of 9
  1. #1
    Join Date
    Oct 2009
    Posts
    27

    [RESOLVED] DB Selection

    Hi

    We are going to develop windows application(VB.NET) for Articles full text search .

    Client is going to distribute this application through CD-ROM.

    Actually my doubt is which database is good for this application?

    This database can’t install in user system it will access from CD-ROM only?

    Please Guide me any one. Thanks for any Help

  2. #2
    Join Date
    Aug 1999
    Location
    <Classified>
    Posts
    6,882

    Re: DB Selection

    I guess MS-Access would be perfect here, if you try to use any other, you will have to first load it in DB and then use it, which is not so good considering that MS-Access files can be used as DB just like that, simply create the connection string with proper path.
    Regards,
    Ramkrishna Pawar

  3. #3
    Join Date
    Jun 2006
    Posts
    437

    Re: DB Selection

    Well, it depends on which kind of application you're going to develop.
    If the application is a mono-user program with a little amount of data to manage, I agree with Krishnaa, Access is the best choice.
    If the application is a multi-user system and it have to process a large set of data probably you should consider other products, for example Sql Server (that is more complex of course)

  4. #4
    Join Date
    Aug 1999
    Location
    <Classified>
    Posts
    6,882

    Re: DB Selection

    With SQL server, you will have to load the DB file into SQL server first, without that you can not make connections, that was the only point I wanted to convey.
    Regards,
    Ramkrishna Pawar

  5. #5
    Join Date
    Oct 2009
    Posts
    27

    Re: DB Selection

    Thanks for ur replies.

    its not small amount of data.and this application is mono-user purpose only ,who have the CD-ROM they only execute the application.

    "This database can’t install in user system it will access from CD-ROM only"

    at that time also we can go for SQL SERVER?

    what about flatfiles(textfiles) is it good?

  6. #6
    Join Date
    Aug 1999
    Location
    <Classified>
    Posts
    6,882

    Re: DB Selection

    Flatfiles would be the worst, but if your application do not demand performance over read then it's alright. Why not use MS Access MDB file ?
    Regards,
    Ramkrishna Pawar

  7. #7
    Join Date
    Oct 2009
    Posts
    27

    Re: DB Selection

    Actually I’ve doubt if user system doesn't have MS Access, it will work?

    (my system have OpenOffice.org 3.0)

  8. #8
    Join Date
    Aug 1999
    Location
    <Classified>
    Posts
    6,882

    Re: DB Selection

    You do ODBC, MS Access as an installed application is not needed.
    Regards,
    Ramkrishna Pawar

  9. #9
    Join Date
    Oct 2009
    Posts
    27

    Re: DB Selection

    Thank u Krishna.

    I’ll go for MS Access.

    Thanks once again.

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