0
votes
2answers
29 views
Placeholders using generic ODBC drivers
Currently, I'm peppering form submissions to account for single quotes & other garbage.
$form_field_value= str_replace("'", "''", stripslashes($form_field_value));
It is to …
0
votes
2answers
141 views
Data Manipulation (INSERT,UPDATE) using DataSet Object with VB.NET
I am newbie at using DataSet. I am writing a program with VB.NET, there I have to select data from one table. Then I have to update about 4 tables and insert to 2 Tables. Which app …
2
votes
3answers
312 views
How to insert JPEG into a SQL Server 2000 database field of image type using Transact SQL
Hi,
I'm trying to figure out how to insert a .JPG file into a SQL Server 2000 database field of type image using Transact SQL. Thanks.
0
votes
1answer
71 views
Linq to SQL - Selecting a new object and performing an update
I have a query that selects data into a custom type-
UserData curData = dc.Users.Where(λ => (λ.Login == username) && λ.Active)
.Select( λ => new UserData { ID = …
0
votes
1answer
491 views
Writing custom Insert/Update command for OleDbDataAdapter
Hello!
I am using OleDbDataAdapter to fill a table in the DataSet. The problem is that select sql statement is very complex (using left joins to get data from numerous tables) and …
0
votes
1answer
142 views
when should dataset reflect the updated rows count after an insert in vb.net
i have a sql database, and have created a dataset for a sample table in it.
The dataset is HotelDataSet2 and data table adapter to insert to it is Various_itemsTableAdapter.
Msg …
6
votes
5answers
889 views
Is there a way to do an “INSERT…ON DUPLICATE KEY UDPATE” in Zend Framework?
I would like to use "ON DUPLICATE KEY UPDATE" in Zend Framework, is this possible?
Example
INSERT INTO sometable (...)
VALUES (...)
ON DUPLICATE KEY UPDATE ...
0
votes
3answers
176 views
Stored procedure that Selects, Conditions, sets variables, then inserts/updates into a table
I'd like to know if this kind of stored procedure is possible, do i need some sort of looping structure or something? I want to do this, basically in this order:
get all rows fro …
1
vote
3answers
73 views
Insert using single insert statement.
Hi,
I want to insert the data in my table tblSubscriptions and I only want to use one insert statement.
I am going to insert data for every userId in User Table. The following SQL …
1
vote
1answer
108 views
INSERT INTO..SELECT..ON DUPLICATE KEYS ambiguous ids
Hey there,
I have the following table:
mysql> SELECT * FROM `bright_promotion_earnings`;
+----+----------+------------+----------+-------+
| id | promoter | generation | tur …
4
votes
1answer
85 views
how to know if last operation was insert or update when using insert on duplicate update in mysql and php?
I am using PHP and MySQL.
If I use an INSERT ON DUPLICATE UPDATE SQL statement, then how do I know if the last operation was an successful insert and not an update or unsuccessful …
0
votes
2answers
144 views
Rails - User Input for Multiple models on a single form - How
This is basically a nested form question, albeit with only one field that belongs to a parent model. My data entry form collects data for a model - however I also need to collect o …
5
votes
2answers
547 views
How do I update if exists, insert if not (aka upsert or merge) in MySQL?
Is there an easy way to INSERT an row when not exists, or to UPDATE if it exists, using one MySQL query?
0
votes
1answer
340 views
Insert binary std::string using ODBC into BLOB column
can somebody give me an example how to insert binary std::string using ODBC and C++ into BLOB column, please?
EDIT:
Duplicate of How to INSERT binary std::string into BLOB (MySQL …
0
votes
4answers
171 views
SQL Server & update (or insert) parallelism
Dear Boffins
I got a large conversion job- 299Gb of JPEG images, already in the database, into thumbnail equivalents for reporting and bandwidth purposes.
I've written a thread s …
