Questions tagged [insertion]

place into or between other items in an enumeration

527 questions
6
votes
1 answer

WMI: Get USB device description on insertion

How can I get a device Id and other description on insertion of USB device? I've found an example how to get notified about USB device insertion/removal. But how to get device desrtiption info? Here is my code snippet: WqlEventQuery…
Jeffrey Rasmussen
  • 339
  • 2
  • 8
  • 20
6
votes
1 answer

QTreeView & QAbstractItemModel & insertRow

I'm trying to implement QAbstractItemModel for QTreeView. I have problem with inserting rows. I noticed that if I insert at the beginning of my application all works fine. But If I insert rows later - after some other operations (like selections…
Lukasz Spas
  • 556
  • 2
  • 9
  • 23
6
votes
1 answer

How to initialize a TreeMap with pre-sorted data?

My app uses a TreeMap to keep data sorted and have log(n) lookups & inserts. This works great in the general case while the app is running, but when the app first starts, I need to initialize the TreeMap with several million longs that I get in…
Yevgeniy Brikman
  • 7,399
  • 4
  • 38
  • 55
5
votes
3 answers

Batch Insertions with Hibernate & Spring

My application is based on Hibernate 3.2 and Spring 2.5. Here is the transaction management related snippet from the application context:
nora
  • 61
  • 1
  • 2
5
votes
1 answer

Selecting a Random Row in Oracle

I need to randomly select values from one table, e.g. tableA.a_id which is a VARCHAR2, and use the value to insert into another table. For instance, assuming three columns needs to be inserted into 100 rows of tableX (a sequence number, a random…
NuCradle
  • 532
  • 5
  • 17
5
votes
1 answer

How to add an image at a specific location in Flex/Spark TextArea or TextFlow

I have a Spark TextArea: Lorem ipsum etc.
selfsimilar
  • 1,377
  • 2
  • 17
  • 31
5
votes
3 answers

A particular problem with btree insertion

I have been playing with the very cool btree applet at slady.net. I'm having trouble understanding a particular behavior. Take a look at this starting state: alt text http://www.freeimagehosting.net/uploads/db2931c7da.jpg This particular state was…
dicroce
  • 41,038
  • 26
  • 94
  • 136
5
votes
1 answer

Codeigniter, error tracking in transaction

I'm running a little method in CodeIgniter to insert some lines in the database (same table). I would like to see which insertion have failed inside a transaction (by returning an array of titles). My code is : $failure = array(); //the array where…
Dargor
  • 223
  • 3
  • 8
5
votes
1 answer

class has no member "operator<<"

I have read through Should operator<< be implemented as a friend or as a member function? and Overloading Insertion Operator in C++, looks like the similar problem, but didn't fix my own problem. My header file: using namespace std; class Animal…
HoKy22
  • 3,337
  • 6
  • 30
  • 50
4
votes
1 answer

10,000,000 Integer Array Insertion Sort in Java

So I have written the insertion sort code properly to where it will successfully create arrays of 10, 1,000, 100,000 and 1,000,000 integers between 1,000 and 9,999 and complete the insertion sort algorithm just fine. However, when I attempt the last…
4
votes
3 answers

template class and insertion extraction overloaded

How can I make the insertion (<<) and/or extraction (>>) operator overloaded in a template class WITHOUT making it inline. I would like to have the << or >> operator as a friend class. I know how to make it inline example of inline in a matrix…
user317955
4
votes
1 answer

Inserting a column at specific location in 2D array in numpy?

I have a 2D numpy array and I need to add one column before the first column as id. My array is this: x = [['8' '4' 'M' '55' '7' 'S' '7' '2'] ['36' '4' 'F' '58' '1' 'M' '7' '7'] ['33' '3' 'M' '34' '4' 'M' '2' '3'] ['43' '1' 'F' '64' '4' 'M' '7'…
Reihan_amn
  • 2,379
  • 2
  • 16
  • 17
4
votes
2 answers

How to understand changing key value in insertion sort?

I know what insertion sort is but I don't understand the code. And I searched it is all explanation about the sort but not the code. It will be easier for me if you answer the question step by step with examples! Thanks! Use this code for example. I…
jessie
  • 87
  • 10
4
votes
1 answer

How to insert bulk data into mysql table from asp.net at once

I have a requirement that I need to read an excel sheet using asp.net/C# and insert all the records into mysql table.The excel sheet consists of around 2000 rows and 50 columns. Currently,upon reading the excel records ,I am inserting the records…
kranthi
  • 1,419
  • 6
  • 29
  • 51
1
2
3
35 36