Got a slight issue and would like a little insight in how some of you have approached it.
I receive data via an uploaded CSV file and would like to select that data from that file and insert into a table of my complaints database. I currently have a DSNless connection to the CSV file that works like a charm and can see the data as well as the target MS SQL table that I would like to insert into.
For most query operations, a single database connection is allowed and no more. How do I handle doing the INSERT INTO from the CSV file into a SQL table? I've tossed around the idea of loading the data into an array but that seems like a real slow approach. I've searched around but haven't seen much discussion around this topic in Dreamweaver.
I receive data via an uploaded CSV file and would like to select that data from that file and insert into a table of my complaints database. I currently have a DSNless connection to the CSV file that works like a charm and can see the data as well as the target MS SQL table that I would like to insert into.
For most query operations, a single database connection is allowed and no more. How do I handle doing the INSERT INTO from the CSV file into a SQL table? I've tossed around the idea of loading the data into an array but that seems like a real slow approach. I've searched around but haven't seen much discussion around this topic in Dreamweaver.