0
votes
3answers
22 views
Create table and fill with test data provided as text
What is your way of creating and populating test tables in MySQL when looking into SO questions where tables (but not CREATEs) and test data (but not INSERTs) are provided?
And what client do you …
0
votes
4answers
74 views
Query regarding SQL Insert in SQL Server?
I am using SQL Server 2008 and developing a project which is in maintenance phase.
I want to insert record in a table whose primary key is an Integer but not an identity. e.g. table name is tblFiles …
0
votes
4answers
31 views
Batch Insert or one by one
I am building a system, where the data will be added by user every 30 secs or so. In this case, should I go for a batch insert(insert after every 2 mins) or do I insert every time the user enters the …
0
votes
4answers
43 views
Why does insert from php to mysql mis-handle question marks sometimes, but from command line never?
I have a simple table:
describe chat_public_messageboard ;
+--------------+---------------+------+-----+---------+----------------+
| Field | Type | Null | Key | Default | …
1
vote
1answer
20 views
Android:Is there a better way to insert and/or update a database entry?
I have a database containing a userId and a note. The user doesn't know if there already is a note in the DB so they write one and click the 'Submit' button. I want to insert this note if there is no …
1
vote
3answers
36 views
insert into sql query in wpf
Hello everyone i am new in wpf. so i have got problems with it. if you help me, i will be so pleased. thanks everyone in advance.
My problem is, can not insert into name inside database in wpf. how …
0
votes
0answers
32 views
SQLite Out of Memory when preparing insert statement
I have a problem with my app it opens this database and selects rows from it ok,
Then when I want to add new rows using the following code and I always get the following problem at the execution of …
3
votes
3answers
103 views
What is the fastest way to insert a large amount of records into a SQL Server DB?
I need to insert millions of records being read from disk into SQL server. I am parsing these from a file on one machine, in what is a single-threaded process.
Ideally I would want it to perform well …
0
votes
2answers
55 views
jQuery: Insert text to textarea
How can i utilize jQuery to insert text at the cursor into a textarea.
1
vote
3answers
58 views
oracle commit kills
hi
I got an oracle db 10g, here a table as an example
create table Dienstplan
(
Montag Number(2),
Dienstag Number(2),
Mittwoch Number (2),
Donnerstag Number (2),
Freitag Number (2),
Samstag Number …
0
votes
1answer
22 views
NHibernate: receiving index out of range while calling flush for insert operation
I've spent the better part of my day trying to solve this message while using NHibernate: "Index was out of range. Must be non-negative and less than the size of the collection.
Parameter name: index"
…
0
votes
0answers
54 views
How can I insert my foto in matlab gui? [closed]
Please hellp. How can I insert my foto in matlab gui?
Thanks for your answer.
0
votes
2answers
34 views
Insert Group By count results into a table
How do you insert a group by count result into a table? I'm trying to insert a list of names with counts for each.
Thanks!!
0
votes
2answers
62 views
Inserting a node into a linked list c
Okay This is the code for insering a node into a linked list.
vec_store holds seq and size. Variable seq holds the vectors and a pointer. and vec_mag takes magnitude of vectors.
For some reason, …
1
vote
3answers
52 views
Oracle database table insertion
I have two tables:
create table Number( num number(5));
create table Entry(id number(3), name varchar(50));
How can I increment the num field of Number table in Oracle whenever I insert something …
