Ask a Question related to Coldfusion Database Access, Design and Development.
-
Pappy17 #1
Inserting Multiple Rows
Is it possible to insert a number of rows into a table based on a value entered
in a textbox? For example (I'm a tech writer not a programmer/engineer, so
please be patient with me.), if someone enters "4" in a textbox, can I insert
that many number of rows?
Thanks!
-Tom
Pappy17 Guest
-
inserting into multiple rows with one call
I have had considerable trouble adding multiple rows into a MSSQL7 database. I have tried looping through an array to create the SQL string,... -
Inserting rows into a DB
I have heard that the most time consuming task into a DB is the when we use the Insert Statatement, Is that true? Ok I have an application... -
SQL0954C: application heap shortage inserting rows
Hello, I have got some probems with APPLHEAPSZ DB parameter on DB2 v8.1.x. I try to make mass inserts into a table with a column specified as... -
using :new / :old values in a trigger (after inserting rows)
I am trying run an AFTER INSERT trigger that reads both :new and :old values corresponding to some of the columns of the record I am trying to... -
Inserting into a set of rows in an SPL
Adam Williams wrote in message ... You need to give it a name: DEFINE matrix MULTISET(...); INSERT INTO TABLE(matrix) VALUES (... -
jdeline #2
Re: Inserting Multiple Rows
Your page could look like the code below.
...
<INPUT TYPE="text" NAME="howMany" ... >
...
<!--- action page --->
<CFLOOP INDEX="i" FROM="1" TO="#howMany#'>
<!--- insert statement goes here --->
</CFLOOP>
jdeline Guest
-



Reply With Quote

