A data entry mode. An example would be new data typed on the keyboard to be inserted at the current cursor location on screen.
0
votes
3answers
21 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 ...
0
votes
3answers
64 views
How to efficiently insert millions of datasets to a MySQL database using PHP?
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 ...
3
votes
1answer
26 views
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
53 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
11 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
25 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
25 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
26 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
1answer
49 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
26 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
65 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
23 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
42 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
14 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
37 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
19 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
46 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
60 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 ...
-1
votes
2answers
32 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
19 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
16 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
37 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
15 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
42 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
53 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
37 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
34 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
41 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
29 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
35 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
20 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
23 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
52 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
24 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
vote
1answer
40 views
Joining two tables in a complex query (not uniform data)
I need to connect two tables in a query that I will use to insert data to third table (used in the future to join the two). I will mention only relevant columns in these tables.
PostgreSQL version ...
-2
votes
0answers
34 views
insert missing date per employee
how can i insert missing date ignoring saturday and sunday
ex:
column C column D column E
MR. A 2/5/2013 7:37:00
MR. A 2/6/2013 ...
0
votes
1answer
59 views
Insert data into nested table
May I please have some help to Insert values into a table. The table is called PurchaseOrder_objtab. Here is the type for the table:
CREATE TYPE PurchaseOrder_objtyp AUTHID CURRENT_USER AS OBJECT
(
...
0
votes
0answers
38 views
Selecting Last Inserted Record with only knowing Table Name and Last Insert ID
I have built a database abstraction layer that has functions for create, read, update and delete, and I want the create function to return the record that has just been created. The abstract function ...
0
votes
0answers
26 views
mysql catch error during insert of multiple rows
I have two tables:
CREATE TABLE `A` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`user_id` int(10) unsigned NOT NULL,
`from_user_id` int(10) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY ...
1
vote
3answers
39 views
form for inserting using php and pdo
I am losing my mind on this and I could really use some direction. Just trying to learn PDO along with PHP and failing to understand the logic. I keep trying to find something online that shows a good ...
0
votes
1answer
23 views
mysql can't insert record with unsigned primary key being zero
I am trying to insert one record into dim_channel table with zero for the primary key (unsigned int).
Mysql command:
INSERT INTO dim_channel
set ...
0
votes
0answers
52 views
Inserting data in 2 table on the same form [duplicate]
I have a table file, this table will keet PDF files
file(id, name, mime, size, data, created)
and a table studentForm, only texts will be kept here
studentForm(firstName, name, emailAddress, ...
1
vote
0answers
30 views
Sybase ASE - INSERT INTO statment i stored procedure, problems in formating string
I have following problem formatting the @p_f_field variable correct, I get the error:
Could not execute statement.
Incorrect syntax near ‘+’
Sybase error code=102, SQLState=”42000”
Severity Level=15, ...
0
votes
1answer
32 views
PGSQL - inserting null values into table
After executing the following query:
insert into regiony
(m_valid, m_validationreport,
m_creation_timestamp, m_creation_user,
m_modification_timestamp, m_modification_user,
instance, kod_regionu, ...
0
votes
1answer
47 views
Mysql commit sometimes takes minutes to finish
Ive been having this problem for over 1 week now. Ive allready gone though the similar problems other people had here on stackoverflow. Im running Mysql 5.6.10.
"query end" step very long ...
0
votes
0answers
9 views
Doctrine - Deduplicate on Insert
I am trying to create system where upon creating a new entity and then flushing it, a check will be made to see if another row is the same, and if it is, the newly created entity becomes the existing ...





