1
vote
2answers
221 views

why does executeUpdate return 1 even if no new row has been inserted?

here is my very simple table (Postgres): CREATE TABLE IF NOT EXISTS PERFORMANCE.TEST ( test text NOT NULL UNIQUE ); if I try to insert a String using the command below FROM the database,everything ...
0
votes
2answers
52 views

Postgres: PreparedStatement incorrectly identifying datatypes

I am having trouble getting this command to execute correctly. The first column of the table is an auto-incrementing integer, so I wish to start entering data at column 2. When I do the following: ...
1
vote
0answers
301 views

Prepare and execute statements with ActiveRecord using PostgreSQL

I've been trying to insert values via a prepared statement using ActiveRecord However, everytime I try to do: conn = ActiveRecord::Base.connection conn.prepare("SELECT * from sampletable where id = ...
1
vote
1answer
139 views

Syntax for if/else statement if insert was successful in a PDO prepared statement

I'm trying to switch from mySql statements to PDO prepared statements, but I'm having trouble figuring out the correct syntax for the if/else statements that I have to use if the insert was successful ...
0
votes
2answers
268 views

keep column name variable in Java INSERT INTO command with PreparedStatement?

I have the following problem: I have two tables in one data base which consist of the same columns besides the name of the last column. I want to write data into them using Java. I want to use the ...
0
votes
0answers
192 views

JAVA SQL JDBC PreparedStatement Insert with Case not unique?

I have a working dbconnection (JDBC, Oracle) and most request work fine, especially some Prepared Batched Statements. I have an existing db testdb with primary key MESSID. When using a statement ...
0
votes
1answer
1k views

java,mysql insert into multiple tables using preparedStatement

Ok, going to reword this question as i made it a bit too complicated before. i want to take this: con.setAutoCommit(false); String tempforbatch; Statement stmt = con.createStatement(); for (int i = ...
0
votes
3answers
1k views

Java PreparedStatement RETURN_GENERATED_KEYS not working

I am trying to get the identity column returned to my java program when doing a SQL insert. I am getting the following error when running the code Uncaught exception thrown in one of the service ...
0
votes
1answer
807 views

Insert…Select - getting ORA-01461: can bind a LONG value only for insert into a LONG column

When I try to execute the following statement: INSERT INTO myTable (id, some_data, more_data) SELECT ?, ?, ? FROM dual WHERE NOT EXISTS ( SELECT 1 FROM myTable WHERE id = ?) I get ...
-1
votes
1answer
344 views

Insert Data into MySQL

I am trying to insert data into a MYSQL Database, i created the following method so that i would be generic as i am going to be needing to insert a lot of data into the Database, The Database in on ...
2
votes
1answer
2k views

Wordpress - insert as prepared query vs $wpdb->insert_id

I have created a simple plugin. It has a configuration site in the backend and some functions for the user site. I need to save some user choices into database. On the beginning I used $wpdb->insert() ...
1
vote
2answers
2k views

Inserting multiple values into multiple columns from an array of data using a PDO prepared statement for MySQL

I'm new to PHP and MySQL (and programming in general) and I'm trying to create a generic database handler class called Database_Handler that will help me manage basic things like insert, delete, ...
1
vote
2answers
2k views

how to insert variable into a table in MySQL

I know how to add data into a table. Like String insertQuery = "INSERT INTO tablename (x_coord, y_coord)" +"VALUES" +"(11.1,12.1)"; ...
1
vote
0answers
275 views

Mysql SELECT / INSERT realtime VS Later + Securtiy Question prepared Statements

Mysql SELECT / INSERT realtime VS Later + Securtiy Question prepared Statements Hello, i wrote a small script unique in and out counter, where the timestamp + ip of the user and the referer gets ...
2
votes
1answer
886 views

jdbc batch insert and query vs single inserts with gernerated key

I want to insert alot of rows into a table that generates the keys automatically. JDBC doesn't guarantee that getting the generated keys will work on a batch update. It is implementation-defined as ...
1
vote
1answer
274 views

Making a method to insert data in different tables

I want to make a single method to make inserts on different tables, I want the user to put as parameters the name of the table and a list of the data to be inserted. Something like this: public void ...
0
votes
2answers
700 views

How to insert data from an EXECUTE statement in mySql?

I have data in a wp_users table, and I want to duplicate the data from that table (except for the ID column) into another table, called wp_users2. If I didn't care about the id column, which I want ...
1
vote
3answers
264 views

PHP INSERT Error When I Don't Attach any File In Upload Input

I have an error inserting some content in a Postgresql Database when I don't attach any file. I have a form with some inputs that I insert in one table and one input to upload multiple files and some ...
1
vote
0answers
649 views

PreparedStatement getGeneratedKeys() JDBC

i used getGeneratedKeys after inserting in Batchmode. I presume that the order i with the keys are returned is the same as the inserts in my batched insert statments. I want to use the keys as foreign ...
4
votes
3answers
6k views

php/mysql - PDO prepared insert, does not work, and no error messages

I really have NO idea of what to do with this now, i have been staring at it for hours, and reqritten it.. i can't get it to work!. require_once("Abstracts/DBManager.php"); ...
30
votes
9answers
23k views

PDO Prepared Inserts multiple rows in single query

I am currently using this type of SQL on MySQL to insert multiple rows of values in one single query: INSERT INTO `tbl` (`key1`,`key2`) VALUES ('r1v1','r1v2'),('r2v1','r2v2'),... On the readings on ...