CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 4 of 4
  1. #1
    Join Date
    Mar 2001
    Posts
    44

    what does the word "database" means?

    well, what does the word "database" means?
    i write data to a .txt file and then retrive the data store in the .txt file to my form....is it a database idea?


  2. #2
    Join Date
    May 2000
    Location
    New York, NY, USA
    Posts
    2,878

    Re: what does the word "database" means?

    Database is an organized storage of data. If you keep data in the text file you have to come up with your own rules how to separate records and fields, which is already done by default in any database.

    Iouri Boutchkine
    [email protected]
    Iouri Boutchkine
    [email protected]

  3. #3
    Join Date
    Feb 2000
    Location
    Indianapolis, IN
    Posts
    123

    Re: what does the word "database" means?

    A database is an organized structure of data but that does not necessarily mean it has to be a seperate program such as Microsoft Access or Oracle. In all actuality, the text file she is using is a database, by the true definiton of the word.

    A database is simply a collection of data.

    Hope that helps



  4. #4
    Join Date
    Mar 2000
    Posts
    175

    Re: what does the word "database" means?

    What Iouri meant was, a database (such as Oracle and Access) makes things easier in the form of tables and joins. It is much harder to store data in the form of tables in a text file.


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