Using XML to store user data

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Alex

    #1

    Using XML to store user data

    Hey Guys..

    I'm just now starting to learn VB 2005, but I have a question that
    might help me in the long run. I hope to write applications which
    store user data, and without wanting the user to always have an MS SQL
    database (or other DB) on hand, is it possible to have VB 2005 store
    all data in XML files? It might be a substancial amount of data, like
    hundreds of records, but given these files are never edited manually,
    can XML handle this?

    Just curious...

    Alex

  • Mr. Arnold

    #2
    Re: Using XML to store user data


    "Alex" <samalex@gmail. comwrote in message
    news:1184964386 .610364.257390@ q75g2000hsh.goo glegroups.com.. .
    Hey Guys..
    >
    I'm just now starting to learn VB 2005, but I have a question that
    might help me in the long run. I hope to write applications which
    store user data, and without wanting the user to always have an MS SQL
    database (or other DB) on hand, is it possible to have VB 2005 store
    all data in XML files? It might be a substancial amount of data, like
    hundreds of records, but given these files are never edited manually,
    can XML handle this?
    >
    Just curious...
    XML is just text with some tags to identify data within them. I have had
    millions upon millions upon millions of bytes sent and received using XML
    over the Internet encrypted in a secure connection.

    Sure you can do that about what you're wanting to do. But consider the
    security and confidentiality risks of data, since the data on the machine
    can be opened, read by other programs or viewed.

    Comment

    • Alex

      #3
      Re: Using XML to store user data


      "Mr. Arnold" <MR. Arnold@Arnold.c omwrote in message
      news:%23WIMUQxy HHA.5204@TK2MSF TNGP03.phx.gbl. ..
      >
      "Alex" <samalex@gmail. comwrote in message
      news:1184964386 .610364.257390@ q75g2000hsh.goo glegroups.com.. .
      >Hey Guys..
      >>
      >I'm just now starting to learn VB 2005, but I have a question that
      >might help me in the long run. I hope to write applications which
      >store user data, and without wanting the user to always have an MS SQL
      >database (or other DB) on hand, is it possible to have VB 2005 store
      >all data in XML files? It might be a substancial amount of data, like
      >hundreds of records, but given these files are never edited manually,
      >can XML handle this?
      >>
      >Just curious...
      >
      XML is just text with some tags to identify data within them. I have had
      millions upon millions upon millions of bytes sent and received using XML
      over the Internet encrypted in a secure connection.
      >
      Sure you can do that about what you're wanting to do. But consider the
      security and confidentiality risks of data, since the data on the machine
      can be opened, read by other programs or viewed.
      >
      The types of applications I thought about writing to store data in XML would
      be like a movie database or other home-type applications where the data
      wasn't critical. For Enterprise applications most definitely MS SQL or
      similar would be used for security. I'd like to possibly write software to
      use at home and share with others, and ideally if they don't have to mess
      with installing and setting-up a database, that'd be ideal.

      Thanks for the info.. I've actually learned a ton since posting that
      message, and though I've not gotten to creating XML databases from VB just
      yet, I'm starting to see how it's possible.

      Take care --

      Alex


      Comment

      Working...