Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
4answers
138 views

Is list comprehension appropriate here?

I have to append elements to a list only if the current iterated element is not already in the list. >>> l = [1, 2] >>> for x in (2, 3, 4): ... if x not in l: ... ...
5
votes
1answer
73 views

How to compare encrypted strings with random seeds?

I want to store profile details encrypted within a database. However, some details should be unique, and since the encryption algorithm randomizes the seed for each encryption, it's exhaustive to tell ...
4
votes
2answers
37 views

How do I make an array of another array's duplicate values only in Javascript?

I have an array with registrants from multiple companies (some from the same companies, some not) and I need to count how many people from the same company have registered. So I need a number that ...
2
votes
2answers
33 views

Manipulate error for duplicate entries - MySQL and PHP

I have set up a MySQL table multiple columns, one of which acts as a unique index. This column corresponds to one of my form inputs so that I can prevent duplicate row entries. Being new to PHP, my ...
2
votes
1answer
70 views

Why do my Dialog Box Classes write to each other?

I'm working on a program that is going to be used with a Time Motion study. There are times that the user may have to create add new objects (Observer, Subject, Clinic). In order to accomplish this ...
2
votes
4answers
1k views

how to delete duplicate rows from ms access database (C#)

I have been going through various sites and codes, but nothing seems to end my misery. Either they help to find and remove duplicates for a specific column or they remove only from the datatable, not ...
1
vote
1answer
189 views

How to remove duplicate entries in CoreData?

i am parsing an XML and saving the Data's to coreData. Parsing of XML works fine, saving too. Actually, when i am parsing the XML again, the old entries will not be updated. AND it not deletes the old ...
1
vote
4answers
105 views

What is wrong with this code?

I coded this in attempt to find the duplicates in an array and increment the count each time a duplicate element was found, this program work but if I put an else statement after if statement the ...
1
vote
4answers
59 views

Identifying the field which is being duplicated!

I have this registration form which has several Unique fields. Now on insertion, I want to detect all the fields on which the duplicate values were tried. How can I do that? I am using MySQL server ...
1
vote
1answer
524 views

JPA, duplicate entry on persist in join table when using @ManyToMany relationship

I want to create custom JAAS authentication where my users and principals relationships are defined in JPA as shown: class AuthUser public class AuthUser implements Serializable { // own ...
1
vote
1answer
153 views

Checking for duplicate file (contents) in git?

In my 'project/repo' I have two MS Visual Studio projects, one for the main code, and an independent one for tests. I have some files that are common to both (in the copy and paste sense) and I'd like ...
1
vote
3answers
1k views

copy row in same table and update just one column in MySQL

I need to copy a row based on some condition(where clause), from a table,make a duplicate entry in same table and update just one column(a foreign_key). But because "select * from Table_name" returns ...
1
vote
2answers
857 views

phpMyAdmin: MySQL Error 1062 - Duplicate entry

I connect with user "root" onto my database "test" which I host locally for development. Among others I have the table "ratingcomment". For some reason when I click on the table "ratingcomment" ...
1
vote
2answers
508 views

ASP.Net MVC 2 - better ModelBinding for Dictionary<int, int>

In some special cases you will need a list of textboxes (to deal with n - n associations) whose id is not know before runtime. Something like this : http://screencast.com/t/YjIxNjUyNmU In that ...
1
vote
2answers
480 views

Log4net duplicate logging entires

I recently switched out log4net logging from using config files to being set up programmatically. This has resulted in the nhiberate entries getting repeated 2 or sometimes 3 times. Here's the code. ...
1
vote
2answers
3k views

Hibernate join tables duplicate entry - Could not execute JDBC batch update

I have a simple domain class Licensee: @Entity @Table(name = "LICENSEE") @Cache(usage = CacheConcurrencyStrategy.READ_WRITE) public class Licensee implements Serializable, Comparable { private ...
1
vote
2answers
2k views

MySQL: duplicate entry error with SELECT…INSERT INTO with UNIQUE constraint

I've got the following table: CREATE TABLE `products_quantity` ( `id` int(11) NOT NULL auto_increment, `product_id` varchar(100) NOT NULL, `stock_id` int(11) NOT NULL, `quantity` int(11) NOT ...
0
votes
1answer
48 views

PDO how to get duplicated key column name for INSERT in MySQL database?

I'm sorry if this questions has been asked before, but I couldn't find an answer for quite a while. The problem is when trying to insert a row in a MySQL table that has multiple UNIQUE keys. If we ...
0
votes
3answers
67 views

mysqldump + auto_increment causing primary key error

I am using mysqldump to (a) dump a table, then (b) insert it elsewhere. A problem occurs when I try to do part (b). Here is the error I get. Duplicate entry '1' for key 'PRIMARY' Now, hold on, ...
0
votes
1answer
45 views

SQL - Duplicate entry by X copies using procedures?

We've tried to set up a trigger with procedure that would first search for an existing item by its ISBN (!!ISBN!!) determine its new barcode, not its table ID (!!Item_BC!!) add an identical prefix ...
0
votes
1answer
46 views

MySQL Duplicate primary key on unexisting key

I've got a weird problem on a MySQL table. When trying to insert a new row, it says the primary key is duplicate. My primary key is auto incremental and is not set within my query (automatically set ...
0
votes
1answer
79 views

Zend_Db_Table - inserts after delete in transaction duplicate entry error

I'm developing a system in which I have an entity 'program' which has some 'locations' via a link table. I'm using Zend Framework with Zend_Db_Table. location 1-----* programlocation *------1 program ...
0
votes
3answers
67 views

how to avoid duplicate entry in array of string?

in my small project i want to make small program where I have to store unlimited no of unique string, but user can input same unique string multiple times. But in my array I want only unique id to be ...
0
votes
0answers
51 views

How to use maven to run unit test which tests the joined sub-class object

I use spring roo to the generate the unit test for joined sub-class object. The joined sub class object is like below. @RooJavaBean @RooToString @RooEntity(inheritanceType = "JOINED", persistenceUnit ...
0
votes
3answers
50 views

Update mysql field with addition users if duplicate search is performed

I have a site where user's searches are tagged with their user id. Right now, if a different user searches a duplicate, it adds +1 to a count field I have, yet, it still keeps the original user's id ...
0
votes
1answer
75 views

Xcode 4.0.2 duplicated pulldown in Project settings -> Code Signing

In Xcode 4.0.2, I click on the project file to bring up the project settings I then select either my target or my project from the left pane of the newly opened settings page I then select the ' ...
0
votes
1answer
249 views

Why do I get “ERROR 1062 (23000): Duplicate entry '4289' for key 1” on an update?

This question has been asked in a number of different flavors before, but the answers supplied in those cases so not come close to helping me solve my problem. We are running MySQL version ...
0
votes
0answers
230 views

Duplicate (ghost) object entry in EF 4.1 ObjectContext

I'm using Silverlight 4, RIA Services, and EF 4.1 and following a MVVM pattern. I have a queue for patients who have checked in at a office. Rows are inserted into a PatientQueue table for each ...
0
votes
0answers
307 views

Jquery Mobile app focus-based navigation stops working after switching between pages

As much as I would like to expand on the details here, I am not able to find relevant information about the root cause of this problem. I am having this issue with my blackberry Webapp which I built ...
0
votes
0answers
439 views

Struts2 action method called twice on form submission

We have a Struts2-Hibernate-Spring based web application. Recently we are getting this issue in the application in which when we submit a form, a struts 2 action method is getting called twice. This ...
0
votes
2answers
394 views

POSTGRESQL INSERT if specific row name don't exists !

I'm trying to INSERT in my Postgresql database only if my model don't exists. I'm using PDO connection, I try IGNORE and ON DUPLICATE KEY UPDATE but with errors in PDO / syntax. MY Code: ...
0
votes
2answers
698 views

Hibernate + “ON DUPLICATE KEY” logic

I am looking for a way to save or update records, according to the table's unique key which is composed of several columns). I want to achieve the same functionality used by INSERT ... ON DUPLICATE ...
0
votes
1answer
308 views

Django: Raw sql INSERT INTO phpbb db fails: Error #1062 Duplicate key

Hey, I'm having a signal when a django user is created I manually insert that user into a phpbb table as well. The code follows: @receiver(post_save, sender=User) def user_created_signal(sender, ...
0
votes
1answer
58 views

Mysql - Join Same Rows with null entries

I have mysql table with format like this Name - Date1 - Date2 After I got result A - NULL - 1 A - 2 - NULL I want to join these results as A - 2 - 1 How to achieve this ?
0
votes
2answers
429 views

how to prevent of duplicating records in mysql insertion queries?

i always in inserting data into a mysql table i use a select for that data before inserting to avoid duplicate records and if the query return null then i insert record. but i think maybe it is not a ...
0
votes
2answers
179 views

Why do I get a duplicate entry error when there is no duplicate entry?

I'm getting the following error: Duplicate entry 'ahamzaoui_v2' for key 'Username' in /opt/lampp/htdocs/webEchange/SiteWeb_V5/dupliquerCompte2.php on line 135 when running a php script. I've tried ...
0
votes
1answer
377 views

fbconnect include not found by xcode

when the following include is added to my project, xcode fails to find it: import "FBConnect/FBConnect.h" i have added the facebook src directory to the header include path and the user header ...
0
votes
3answers
291 views

how to prevent duplicate data if data get from DB?

dear all. i have a form that consist of two textfield and one combobox. i want prevent the duplicate entry data from client side. i get combobox data from DB, like: <select id="line" name="faline" ...
0
votes
3answers
521 views

Duplicate entry when trying to edit a record

When i try to a edit a entry.. its creating a duplicate entry in the database. i have made sure i add an hidden id field when i go to the edit form. Restaurant RestaurantAttribute ...
0
votes
2answers
94 views

MySQL: updating a row and deleting the original in case it becomes a duplicate

I have a simple table made up of two columns: col_A and col_B. The primary key is defined over both. I need to update some rows and assign to col_A values that may generate duplicates, for example: ...
0
votes
5answers
228 views

Searching through large data set

how would i search through a list with ~5 mil 128bit (or 256, depending on how you look at it) strings quickly and find the duplicates (in python)? i can turn the strings into numbers, but i don't ...
0
votes
2answers
1k views

Duplicate key issue with Spring and Hibernate - assistance needed

--Summary (shortened)-- I have a controller that loads a profile object from the corresponding DAO. It updates some properties, many of them sets, and then calls saveOrUpdate (via save in the DAO) ...
0
votes
2answers
468 views

Can you integrate Java 1.6 classes into Eclipse Blackberry project?

i am using the latest IDE for eclipse and have attached the blackberry 5.0 sim. i am a new bb developer and i was wondering if there is any way of integrating java 1.6 classes (or any 3rd party jars) ...
0
votes
1answer
46 views

removing duplicates in my values in database

I have a Vb form that inserts data into multiple tables and maintains the foreign key using a sope_identity. I am using an insert procedure to deal with the insertion. My problem is that why i insert ...
0
votes
1answer
2k views

Duplicate entry error in MySQL/Hibernate

I am facing the following problem and can't find a proper solution. I have a relation A with the attributes id, x (foreign key), y (sequence number) and z (content). Further there is a uniqueness ...