Welcome, Guest
  • Author Topic: saving multiple data to access database  (Read 638 times)

    simon

    • Server what's that
    • *
    • Posts: 5
      • View Profile
      • Email
    saving multiple data to access database
    « on: 02/07/05, 11:23 »
    Hi. Is there a way to save large amounts of data to an access database just using one send. I'm using the LoadVars and I've tried sending arrays through but that isn't working. I'm creating a graphical music composition program in flash and I want the user to be able to save all the graphical data. This will involve connecting to a database and saving all the note data (potentially hundreds of pieces of data). Is there an easy way to do this? Any suggestions most appreciated.

    Jorge Solis

    • Global Moderator
    • Systems Administrator
    • *****
    • Posts: 14616
      • View Profile
    Re:saving multiple data to access database
    « Reply #1 on: 02/07/05, 11:31 »
    Hi simon, welcome to the Boards !

    You can pass a comma separated list of data, parsing it on server side trough the language you're using for it. So basically you send a list of hunderd of values separated by comma, you split on server side and save as you need. Another approach is Remoting, but is a server side functionality not always free (not under .Net at least)

    Jorge
    « Last Edit: 02/07/05, 11:32 by Jorge Solis »

    simon

    • Server what's that
    • *
    • Posts: 5
      • View Profile
      • Email
    Re:saving multiple data to access database
    « Reply #2 on: 02/07/05, 11:56 »
    thanks a lot for your quick response. Will try it. Regards