Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
1answer
2k views

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

I have a Spark TextArea: <s:TextArea id="editor"> <s:textFlow> <s:TextFlow id="_tf" > <s:p>Lorem ipsum etc.</s:p> <s:p> ...
5
votes
3answers
286 views

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: This particular state was arrived at by ...
4
votes
2answers
876 views

Does hibernate preserve the order of a LinkedHashSet and if so, how?

Does hibernate preserve the order of a LinkedHashSet and if so, how? In case this depends on the type of database, I'd like to know this for PostgreSQL. Background: I know what a LinkedHashSet is ...
4
votes
4answers
2k views

Slow insert speed in Postgresql memory tablespace

I have a requirement where I need to store the records at rate of 10,000 records/sec into a database (with indexing on a few fields). Number of columns in one record is 25. I am doing a batch insert ...
3
votes
3answers
53 views

Debugging map insertion?

Well, the title says almost all... I'm having an issue with inserting an entry into a Map. #include <stdio.h> #include <vector> #include <stack> #include <map> using ...
3
votes
1answer
342 views

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 ...
3
votes
1answer
1k views

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 ...
2
votes
3answers
89 views

Insertion Sort from T Cormen Book

I am working through the "Introduction to Algorithms" book by Cormen, and I have created the following from pseudocode. However, the first two elements of the Array do not seem to be sorted. I cannot ...
2
votes
4answers
131 views

Append array element only if it is not already there in Javascript

I need to add an element to an array only if it is not already there in Javascript. Basically I'm treating the array as a set. I need the data to be stored in an array, otherwise I'd just use an ...
2
votes
3answers
176 views

Which algorithms are good for sorting songs?

I have a java project for uni and I want to know which algorithms would do a good job for a small "n" of songs and large "n" of songs. a song consists of the following data elds: title (a nonempty ...
2
votes
6answers
96 views

C++ stream second insertion operator

Is it possible to define a second insertion operator to have two modes of outputting a class? Say e.g. one that outputs all members and one that just outputs some basic unique identifier that is ...
2
votes
1answer
279 views

Python MySQLdb issues

I am trying to do the following insert operation: cursor.execute(""" insert into tree (id,parent_id,level,description,code,start,end) values ...
2
votes
1answer
305 views

Proper Way to Insert Strings to a SQLAlchemy Unicode Column

I have a SQLAlchemy model with a Unicode column. I sometimes insert unicode values to it (u'Value'), but also sometimes insert ASCII strings. What is the best way to go about this? When I insert ASCII ...
2
votes
3answers
336 views

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 ...
2
votes
1answer
320 views

Java JSpinner Prevent Letter Insertion

A JSpinner is used to store a number in my application (with a SpinnerNumberModel). As expected, the spinner doesn't allow invalid characters (letters, symbols, etc.) to be stored. However, those ...
1
vote
3answers
150 views

Massive insertions from one big table to other related tables

Into: Currently i have scraped all the data into one PostgreSQL 'Bigtable' table(there are about 1.2M rows). Now i need to split the design into separate tables which all have dependency on the ...
1
vote
1answer
69 views

Insertion Sort vs. Shell Sort Program. Shell sort only works some of the time

Ok, so this is for a data structures class. The assignment was to write a program that takes a list of 100 integers from a txt file, take 2 different sets of 4 intervals for shell sort, and then sort ...
1
vote
1answer
70 views

Ext JS 4 TextArea - how to set the insertion point?

Is it possible / how do you set the insertion point for an ExtJS 4 Textarea? I want to insert some text (which I have working), then I want to set the insertion point at a specific length from the ...
1
vote
1answer
40 views

empty function to remove duplicates

I am importing an excel file to DB. For that i am using excel-class reader. Using that i can insert values to DB directly. Here is my code to insert data. $q="SELECT * FROM leads_info WHERE ...
1
vote
3answers
103 views

How to define a static operator<<?

Is it possible to define a static insertion operator which operates on the static members of a class only? Something like: class MyClass { public: static std::string msg; static MyClass& ...
1
vote
1answer
46 views

Creating translator; Need to properly insert from a text file

For my CS class, we've been given an assignment to create an english to spanish translator using the text file from here: http://www.ilovelanguages.com/IDP/files/Spanish.txt So far, I've got the the ...
1
vote
1answer
154 views

XSLT add node if node does not exist, append child if it does

I have the following XML: <root> <book> <element2 location="file.txt"/> <element3> <element3child/> </element3> </book> ...
1
vote
2answers
38 views

Sorted insertion using JQuery

I have a code similar to this (rendering information from external service): var myList = {'id1' : {prop1:'v1', prop2:'v2'}, 'id2' : {prop1:'v3', prop2:'v4'}}; for (var k in ...
1
vote
2answers
73 views

problem of insert multiple values with WHERE NOT EXISTS

I want to insert multiple records from the form into table named 'user' with the 'items' value submitted from the form do not exist in another table name 'order'. There is only 2 field in the 'order' ...
1
vote
1answer
154 views

My implementation of insertion sort

This is my implementation of insertion sort in java for doubly linked list. I have checked for many values and it gives me correct output. My question is: I don't know how to calculate the algorithm ...
1
vote
0answers
215 views

Recurrence For Running Time Of A Recursive Insertion Sort. Need Help?

Currently, I was assigned to write a recursive version of the insertion sort algorithm. And I did that. In fact, here is that: void recursiveInsertionSort(int* inputArray, int p, int q) { while (q ...
1
vote
2answers
60 views

Logic Impasse in a Simple Insertion Sort

I'm teaching myself Python and I'm having difficulty with a relatively simple concept. The goal is to sort a list in ascending order using insertion sort. Here is the code: def InsertionSort(A): ...
1
vote
1answer
560 views

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 - ...
1
vote
2answers
119 views

Process priority in MySQL

I need to make a big modification on a database: I created a new table, and I need to insert in it data from several other tables (read: complicated insert statement, with a select part involving ...
1
vote
5answers
123 views

Javascript: Situation with no semi colon needed?

I am setting up some data to do an ajax post and the code looks like this. var data = {} data.someId= 3; data.anotherId = 4; and this works fine. But why don't I need a semi-colon at the end of the ...
1
vote
1answer
444 views

Cursor loop infinite loop by using inser into

I want to use a cursor for inserting data. ALTER PROCEDURE [dbo].[VehBlocMajStatut] -- Add the parameters for the stored procedure here @NO_Veh int, @Statut int AS BEGIN DECLARE @Temp_appel int ...
1
vote
1answer
584 views

Insertion sort in Assembly

So I'm coding out an insertion sort (in assembly) based on this high level code: void insertionSort(int data[ ], int arraySize) { int insert; int moveItem; for(int next=1; ...
1
vote
3answers
221 views

adding image files to database table

how to add image file/s to mysql table.I am a programmer I am using php and mysql.
1
vote
4answers
284 views

C# code and SQL Server performance

I have a SQL Server database designed like this : TableParameter Id (int, PRIMARY KEY, IDENTITY) Name1 (string) Name2 (string, can be null) Name3 (string, can be null) Name4 (string, can ...
1
vote
2answers
173 views

SQL Insertion without duplication

Is there a specific command in C# for SQL Server in order to INSERT a lot of rows with the condition : if a row already exists in database doens't duplicate it during insertion ? Edited In a ...
1
vote
4answers
209 views

Need to make context available to C++ ostream insertion operators

For an API that I am working on, I want to allow the user to insert custom objects into an ostream, but these objects have no meaning on their own, and are too memory constrained to include an ...
1
vote
2answers
74 views

jQuery: dom insertion selector problem after .get

HI Volks, here is my code block which I want to replace by the ajax respond: <div class="results"> <span id="like9"> <a class="like" rel="ajax.php?id=9" ...
1
vote
3answers
2k views

Transfer Data between databases with postgres

I need to transfer some data from another Database. The old database is called paw1.moviesDB and the new database is paw1. The schema of each table are the following Awards (name of the table)(new ...
1
vote
2answers
178 views

SQL select from last inserted

in MySQL, I have table. One column has auto-increment. When I insert something mysql_query('INSERT INTO `table` SET `column` = "data";'); Now, what I want is, without further queries, to get the ...
1
vote
2answers
1k views

How to add a new node to a dijit.Tree

I want to add a new node to a dijit.ree as a sibling of the currently selected node. I've found sample code (I'm new to dojo) that adds a new item to the tree using the newItem method of ...
1
vote
1answer
461 views

flex: move item around in a tree control

I have a tree control and I want to give the user the ability that he can move up and down the element he just selected with a up and a downbutton. The tree gets generated from XML. I managed to ...
1
vote
1answer
163 views

Insert a point into a finite 2D region with maximum distance to existing points

I have a set of 2D points inside a finite 2D region of space (let's say a world-aligned rectangle to keep things simple for now). What would be an exceedingly efficient way to insert a new point into ...
0
votes
1answer
44 views

Pass data from sheet to insertNewObject in a parent/child relationship

I have a problem to insertNewObject in an entity being the child in a parent/child relationship. It's a CoreData app with a local SQLite base. There are 2 entities presented with 2 TableViews on the ...
0
votes
2answers
86 views

Multi-insertion with foreach 2 level array loop

Am doing a multiple insertion using foreach (there are two level of looping because each product may have many attribute). Have suggested to use stmt, but not sure how to do these. I know the way of ...
0
votes
0answers
41 views

Insertion Algorithm VB.NET

I have a problem with this case to Insert a number into a list of array. Let me just straight to the case. I'm not post any code in here because I believe that my code wasn't working as well as I ...
0
votes
1answer
78 views

multiple SQL insertion & form validation In php

I am trying to do multiple product add with a form using php and mysql , and i am confusing on the concept of doing these, My expecting output is , provide a form with at least ten rows of multiple ...
0
votes
1answer
36 views

Javascript jQuery required items in a survey

I'm building a multi-question survey where I'm using javascript to: make sure all survey questions displayed on a page are answered show an additional question on a page based on the answer to a ...
0
votes
4answers
31 views

how to insert table data from one user to another in different machines in mysql

I want to insert the data into one of the tables of a different user and a different database. e.g., First DB ip:ip1 user:user1 b:db1 Second DB ip:ip2 user:user2 db:db2 ...
0
votes
1answer
47 views

django model inheritance - multi table - manual insertion

I just redesigned a part of my DB to use multi table inheritance and things are much much easier now! I do have one question, I am trying to manually insert thousands of rows in my tables and now I ...
0
votes
0answers
16 views

What is the underlying data structure of NSIndexSet?

Just wondering about the runtime of NSIndexSet's addIndex method. What's the underlying data structure of NSIndexSet?

1 2