A data entry mode. An example would be new data typed on the keyboard to be inserted at the current cursor location on screen.

learn more… | top users | synonyms (1)

0
votes
1answer
21 views

How to move data between 2 tables / with different columns in different databases with multiple values

INSERT INTO a2.cat (id, img) SELECT category_id, category_id FROM topshop.category; all I need to insert plus values in the column img from the category_-id INSERT INTO a2.cat (id, 'c'+img+'.jpg') ...
-1
votes
0answers
14 views

add static data to a field by criteria

I have a table in Excel with 2 fields, the first field is the identifier I that exists in my database, and the 2nd field is the value I want to insert into a newly created blank field in the database. ...
0
votes
1answer
12 views

how to traversal redis list

I have a list in redis, I can ensure the element in the list is ordered.Now I has a new element,I want to insert in the list and the list is also ordered. My way is traverse the list and compare the ...
0
votes
1answer
43 views

How do I make a SQL Command with INSERT AND COUNT

I don't know how to COUNT a column named id. I tried mysql_query("INSERT INTO `servers` (`user_id`, `ip`, `port`, `banner`, `disabled`, `vip`,`premium`, `name`, `status`, `votifier_key`, ...
2
votes
5answers
62 views

Using Php PDO Insert statement

Someone told me that when you are working with PDO, you cannot use "INSERT INTO .... SET" to insert data into database, because it will not work on databases other than MySQL. I'm not sure what ...
0
votes
2answers
36 views

Insert SQL data into row with same id?

Is there a SQL command for inserting data into a row where the id = the table id, and if it doesnt exists then insert into a new row? Something like: ('INSERT INTO USERS IF EXISTS WHERE ...
1
vote
3answers
47 views

How to insert null value in Database through parameterized query

I have a datetime datatype : dttm Also the database field type is datatime Now I am doing this: if (dttm.HasValue) { cmd.Parameters.AddWithValue("@dtb", dttm); } else { // It should insert ...
0
votes
0answers
23 views

mybatis return id for inserted fields without object

I know this question is asked several times but most of the answers are for the scenario when we are passing an object as parameter. I am trying to insert a row into sql server using mybatis and I ...
-1
votes
0answers
21 views

I hv to create table for items purchased for every diff user who is registered & sign in, so to retrieve afterward to Mycart Page?

String uname=(String) request.getAttribute("uname"); String pro_id= request.getParameter("pro_id"); String pro_name= request.getParameter("pro_name"); String pro_price= ...
2
votes
2answers
25 views

mysqli insert statement error

Just updating my mysql connections and so forth to use this mysqli implementation. I'm trying to run the code below... The connection to the database is fine and works, and when I substitute the ? ...
1
vote
2answers
26 views

SQL insert row with one change

I have this table: Table1: id text 1 lala And i want take first row and copy it, but the id 1 change to 2. Can you help me with this problem?
0
votes
0answers
7 views

INSERT with web.py

I started a new database named GREEN.db with one TABLE defined as followed: CREATE TABLE articles( "articleID" serial NOT NULL, "articleTitle" character ...
0
votes
3answers
25 views

MySQL - Combine two tables into third without duplicates

I am having a hard time wrapping my mind around a concept here. What I have are three tables that are identical structure. I need table 1 to be combined with table 2 and INSERT INTO table 3. My ...
-1
votes
1answer
32 views

Inserting into Postgres within a trigger function

I have a trigger function that I am running BEFORE INSERT on table1. In this function I do the following: INSERT INTO table2 VALUES(x, y, z); INSERT INTO table3 VALUES(x, a); For some reason, these ...
1
vote
3answers
72 views

How to efficiently insert millions of datasets to a MySQL database using PHP? [duplicate]

I run a PHP script that reads data rows from a file, analyses them and inserts them one by one into a local MySQL database: $mysqli = new mysqli($db_host, $db_user, $db_password, $db_db); if ...
4
votes
2answers
57 views
+50

How to get a warning when a FLOAT value is inserted into an INT column in MySQL?

I have acreated a Table containing a column of type INT: CREATE TEMPORARY TABLE `myTab` (`int` INT, `text` TEXT, `float` FLOAT); Now I try to add a float value into the INT column INSERT INTO ...
0
votes
2answers
57 views

Inserting array of values into a table

I ve issue in inserting an array of values into a table.. I ve to insert the array of contact details into the table.. That is, i ve the list of first names in an variable, list of last names in a ...
0
votes
0answers
12 views

Trigger update does not work when creating a new request

I am new to DB Oracle, When I create a new request in Clarity (that is a project & portfolio management application) or when I change the status of a request, I would like to update the field ...
0
votes
1answer
27 views

Inserting text after specific tag

I have a text file comprised of different tags. I am able to find out if a specific tag exists within the document using the following... Public Class Form1 Private Sub Button1_Click(ByVal sender As ...
-4
votes
1answer
28 views

Insert Number values

When inserting values into a database, and the datatype is a Number, does the Number need to be in quotation marks: Here is the Object code: create type ComputerFile_objtyp as Object ( ...
1
vote
3answers
28 views

PHP dynamic list pick values in next page

Am trying to insert values from a php generated option list into a mysql database. The error i am getting in a "notice error". The error reads: Notice: Undefined index: fixture_id in ...
0
votes
2answers
52 views

How do I send a null variable, instead of a blank one to my sql DB?

Whenever someone tries to register using my program, and leaves a non-required textfield blank, my instruction sends a "" (blank) data, instead on a null one, how do I make that the data i'm inserting ...
0
votes
0answers
34 views

Why do I get these errors “Data truncated for column”?

I use this string to upload my CSV file into a MySQL table. Query = """ LOAD DATA LOCAL INFILE 'Data to file_name.csv' INTO TABLE table_name FIELDS TERMINATED BY ',' OPTIONALLY ENCLOSED BY ...
3
votes
4answers
83 views

Efficient Update of Table from One SQL Server to Another, Same Table Structure

I have one database server, acting as the main SQL Server, containing a Table to hold all data. Other database servers come in and out (different instances of SQL Server). When they come online, ...
0
votes
0answers
32 views

insert data into database from an embedded form in codeigniter

Hi I am using codeigniter and sheepIt clone forms.(embed forms). I am trying to insert the data into database after submitting. The output data is in this format when i used print_r() Array ( ...
2
votes
2answers
43 views

codeigniter INSERT query is correct and executed but no insert is performed

relevant code: $sql = "INSERT INTO rel_attivita_corsi(id_attivita,id_corso) VALUES"; foreach($elements as $element) { $sql .= "('".$element."','1'),"; } $sql = substr($sql,0,-1); if ...
1
vote
2answers
41 views

c# register form mysql insert

So im having problem gettin some data in to the database.. Im really stuck, im quite new to c# and have not learned all keywords yet, im not getting any errors just some nothing adds to my database. ...
0
votes
0answers
15 views

Saving List in Database using LInqDataSource with Jquery drag and drop

I have two list connected to Database through LinqDataSource . i have implemented Jquery drag and drop . items from one list can be transferred to to anther. i want to save the list on each item drop ...
-2
votes
3answers
38 views

Create a copy of a table mysql

I am trying to create a copy of a table using the code below. Everything is working great IF they both have the Same Columns. My table1 has 2 columns (id, username), while table2 has 3 columns (id, ...
0
votes
1answer
22 views

mysql copy value from temp_table to table

1 have 2 table, temp_table and table, both are MyISAM. temp_table (Write frequently, run cron job every minute insert data) ...
0
votes
1answer
50 views

[C#]Doesn't insert in DB, does give a executenonquery of 1

I am busy with a project in which I have to insert some data in a compact SQL db file which is created in Visual Studio 2010 express. Every check I do says the insert is being done properly, only one ...
0
votes
4answers
63 views

Insert data if not exist

I have two tables cw_users and ref_users, both have a column named id. I'm using ISAM so can't use a foreign key. So now I wanted to insert id from cw_users into ref_users if it didn't exist. This ...
-2
votes
2answers
34 views

How to insert a character inside a string

$string=apple $add=£ $new=app£le I am facing problem with inserting character in a string.
-2
votes
1answer
23 views

Binary Tree Insert Algorithm

I recently finished implementing a Binary search tree for a project I was working on. It went well and I learned a lot. However, now I need to implement a regular Binary Tree... which for some reason ...
0
votes
1answer
18 views

PSQL - how to insert data to the altered table?

I have an EMPLOYEE table with foreign key Dno that refers to Dnumber in the DEPARTMENT table. In the DEPARTMENT table there is also foreign key Mgr_ssn that refers to Ssn in EMPLOYEE table. I ...
0
votes
1answer
40 views

Syntax error:MySQL Insert Select

I have this query to insert into tbl_userprofile: $SQL = "INSERT INTO tbl_userprofile (userId, name, surname, gender, nationality, address, mobile, department, email, question, answer) SELECT ...
0
votes
1answer
18 views

Insert Script running in web server for Inserting sql data

I have a script which is running perfectly in local host. the code is this string sql = "insert into Usertable "; sql += "values(" + mVendid + ", '" + usrname + "','" + usrpass + "', ...
2
votes
2answers
46 views

What is the best way to loop through string and insert into mysql column?

I have a variable which displays the following string: $item_value = itemOne,itemTwo,itemThree I would like to take this string and have insert each item as a separate row entry for a single column. ...
0
votes
1answer
57 views

Unable to save data to Entity Model Database using saveChanges() method

I am trying to save data to my database. What I want is that when the button is pressed, data is saved to the database permanently. I've done tests where code is saved while the application is ...
0
votes
1answer
38 views

Application form submitting to database sometimes works, sometimes doesn't

This is an application form that submits all fields to a database. Sometimes it works perfect no problems at all, other times everything submits but the uploaded file isn't included, and sometimes ...
1
vote
2answers
37 views

Android, SQLite: Inserting data in while clause is very slow

SOLUTION AT THE BOTTOM OF THE QUESTION I have a FTP Server with more than 3'000 pictures on it and I save the picture names to an ArrayList. After this I'd like to save them from arraylist to ...
0
votes
1answer
34 views

New to sql, how to insert column values into new column?

What I have: ALTER TABLE countryb ADD gnppercap real ; INSERT INTO countryb (gnppercap) SELECT gnp/population FROM countryb ; I successfully created the column "gnppercap", now I want to ...
0
votes
2answers
44 views

When trigger failed to write in remote server, write to local server

First sorry for my English. I have one server when receives an update in specific table, I want write to a remote server too, but if the remote server is unavailable, I want the trigger to write to ...
-3
votes
0answers
30 views

ubuntu mysql innodb insert update slow [closed]

The same program in windows can create 1000 account/s,and in ubuntu12.04 is 35 account/s windows use mysql5.5.15 innodb | Intel(R) Core(TM) CPU 4 core i5-3450 @ 3.10GHz ubuntu use mysql5.5.31 innodb ...
0
votes
3answers
38 views

PHP FORM INSERT INTO not inserting records

I'm working on a Uni assignment and am having trouble inserting records to MySQL database using a form. My set up is below. I can view entries in the database with no problem. I'm new to this so sorry ...
0
votes
2answers
21 views

ksh - How insert a echo command in a variable

how can i insert this command line in a variable? : echo "abc:def" | awk -F':' '{print "field1: "$1 "\nfield2: "$2}' Thanks in advance
1
vote
1answer
38 views

Insert picture to Excel VBA, method Pictures failed

Tried to make a macro that progressively inserts 3 images in Excel One worksheet (pics) contains the URLs of images in Column A row 1-3 The other worksheet (outputs) is supposed to output the images ...
0
votes
2answers
69 views

How to force Entity Framework to map `internal` navigation properties?

Using Code First with EF 5.0 I have the followings: internal class Entities : DbContext { public DbSet<User> Users { get; set; } public DbSet<Project> Projects { get; set; } } // ...
0
votes
1answer
38 views

Only last image uploaded from array when uploading multiple images in MYSQL with PHP

I'm trying to upload multiple images from a textbox to MYSQL database using PHP. But somehow it only inserts the last item from the array in the database. I tried uploading using one image, and that ...
0
votes
1answer
5 views

C++ SLT: how to insert in sorted order

I know that std::find() helps to find the iterator position of a given value. And std::insert() insert a given value into the container at a known position. However, is there any function I can call ...

1 2 3 4 5 101