Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
1answer
238 views

MySQL's AUTO_INCREMENT behavior in a multiple row insert

I think the answer to my question is obvious but since I could not find any documentation to support it, I thought it's worth asking. At least for the record. As we all know AUTO_INCREMENT fields are ...
2
votes
5answers
745 views

How should I multiple insert multiple records?

I have a class named Entry declared like this: class Entry{ string Id {get;set;} string Name {get;set;} } and then a method that will accept multiple such Entry objects for insertion ...
1
vote
4answers
911 views

MySQL - how many rows can I insert in one single INSERT statement?

Does it depend on the number of values sets? Does it depend on the number of bytes in the INSERT statement?
0
votes
1answer
237 views

insert multiple rows from array into table with unique ID

I have copied and modified a script off the internet. The script originally deleted selected records from a mysql table query. I have modified the script to insert the selected records into another ...
0
votes
1answer
67 views

Inserting multiple rows in mysql php

I'm trying to insert multiple rows but I continue getting an sqlerror and cannot for the life of me figure out why. echo '"'.$thequery.'"'; $sql = mysql_query($thequery) or ...
0
votes
1answer
20 views

Converting SQLite3 from MySQL database [Insert problem]

I am trying to execute a SQL file (A dump file from MySQL database) inside a SQLite3 database. The problem I am facing is that the dump file has a multiple insert that is not handled by SQLite3. Here ...
0
votes
2answers
557 views

How to change one-to-one relationship to one-to-many relationship in MySQL?

I currently have a user's table which contains a one-to-one relationship for Youtube OAuth tokens. However, I now want to support multiple video sites and want to break this into a one-to-many ...
0
votes
1answer
806 views

java 1.4 :how to insert multiple records in a database with one single hit using executeBatch?

i am reading records data from a file(records count can be up to thousands ).Now i want to insert each record in to database.I want to insert all of records in one hit to reduce performance hit. If i ...