insert multiple row and table

Ask a Question related to Coldfusion Database Access, Design and Development.

  1. #1

    Default insert multiple row and table

    I have table1 and table 2, one to many relationship.
    How do I save 3 rows in table 1 and one row in table 2 at the same time?
    sweetyp2005 Guest

  2. Similar Questions and Discussions

    1. Multiple Insert or Looping Insert
      I built an application on an Access DB that allows a dispatcher to log trucks in the field at their location as they call in. There are three...
    2. How Do you insert a table in Previous Table
      How Do you insert a table in Previous Table that has an image, in a web page
    3. Insert Multiple INTO multiple table
      Is there an extension available that can insert into multiple database tables and then retrieve the ID of the first insert? Andy
    4. Login - multi table insert for registrant; subsquent login insert page requests into joined 'Selection' Table
      Question regards insert and updates in sql server for a simple login script that requires registration the first time and only "email address" upon...
    5. How to insert multiple records to the same table with a multi-fields form
      Hi all, is it possibile to insert multiple records in the same table? I imagine to build a multi-rows form, with the same number of fields per...
  3. #2

    Default Re: insert multiple row and table

    sweetyp2005 wrote:
    > I have table1 and table 2, one to many relationship.
    > How do I save 3 rows in table 1 and one row in table 2 at the same
    > time?
    Multiple inserts in the same cfquery if your db and db driver supports this
    or multiple cfquery if it doesn't.

    --
    <mack />



    Neculai Macarie Guest

  4. #3

    Default Re: insert multiple row and table

    You can't
    What you can do is wrap all the statements in a transaction so that you preserve your data integrity if something goes wrong


    SQLMenace Guest

Posting Permissions

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

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139