0
votes
6answers
50 views
create/append node vs innerHTML
Does anyone have a good reason to use one over the other? As far as I can tell, create/append node simply prevents you from creating invalid code, while innerHTML allows you to inj …
1
vote
4answers
47 views
jquery insert html into list before a child ul-tag
Hello
I have this:
<ul id="pickme">
<li>1</li>
<li>2</li>
<li>3
<ul>
<li>3-1</li>
</ul& …
1
vote
3answers
44 views
php mysql_insert_id on multiple rows?
Hi,
Is it possible to get the auto incremented ids from a query which inserts multiple rows?
eg:
INSERT INTO table (col1, col2) VALUES (1, 2), (3, 4), (5, 6);
Alteratively, is th …
1
vote
3answers
46 views
Sql date field is not getting saved exactly
Hi,
I am trying to insert a date value '2010-03-14 02:00:00 AM'(Day light saving start time for 2010 year) in a datetime field of a table in sql server 2005. The date is saved as …
0
votes
3answers
52 views
SQLLite, NOT EXISTS doesn’t work
Ok, let's say from start I'm not a SQL ninja. Anyway I'm using SQLite in a tiny project of mine. I've this test table:
CREATE TABLE [prova]
(
[id] INTEGER PRIMARY KEY UNIQUE, …
0
votes
1answer
19 views
Linq one to many insert when many already exists
So I'm new to linq so be warned what I'm doing may be completely stupid!
I've got a table of caseStudies and a table of Services with a many to many relasionship
the case studies …
0
votes
3answers
49 views
Select MAX(field)+1 FROM … Concurrency issues
Hello Im afraid about concurrency on partner application cause in the last days it was having troubles with CRUDS Operations, especially with inserts. So I ran SQL Profiler and not …
0
votes
0answers
12 views
ActiveRecord custom insert/update query
I'm using PostGis to store some spatial data. I used ActiveRecord to retrive data from db, and I used [Property (Formula = "asbinary(shape)")] on property where geometry was stored …
0
votes
1answer
52 views
Linq Insert problem for Beginners
Why is this thing not working?
[Database(Name="Relationships_Test")]
[Table(Name = "Order")]
public class Order
{
[Column(Name="ID", IsPrimaryKey=true)]
public int ID { get; set …
0
votes
2answers
49 views
which sqlite statement can produce a result to indicate duplicate entries? Android
For my application, I am trying to add entries without having a duplicate entry, and if there are a duplicate notify the user and have him try again. Using SQLite, which I know ver …
0
votes
2answers
146 views
SQL Server - Get Inserted Record Identity Value when Using a View’s Instead Of Trigger
For several tables that have identity fields, we are implementing a Row Level Security scheme using Views and Instead Of triggers on those views. Here is a simplified example stru …
0
votes
4answers
46 views
Mark record inserted
I have table, which I am inserting records to another table.
What is the best way to mark record inserted, so it will not be attemted to being inserted again?
0
votes
3answers
81 views
Problem with MySql INSERT MAX()+1
I have a single table containing many users. In that table I have column called user_id (INT), which I want increment separately for each person. user_id MUST start at 1
I've prep …
0
votes
1answer
20 views
java 1.4 -sql server 2000:not able to insert multiple records into table.
INSERT INTO UPLOAD_FILE_RECORD_FIELDS_DATA
select ?,?,?,?
union all
select ?,?,?,?
union all
select ?,?,?,?
I have to insert multiple records into one table.So i am using q …
1
vote
2answers
53 views
SQL Insert with data from multiple tables.
I have four tables: Messages, MessageCategory, MessageStatus and MessageLevel.
MessageCategory, MessageStatus and MessageLevel all just have three fields: Identity (primary key), …
