Tagged Questions
The deletion tag has no wiki summary.
7
votes
9answers
3k views
Core Data: Error, “Can't Merge Models With Two Different Entities Named 'foo' ”
I'm working on an iPhone app that uses Core Data. Most times, I just test in the simulator, but occasionally pump the app down to the iPad to make sure.
I've recently changed my Core Data model, and ...
6
votes
2answers
251 views
Boost Weak_Ptr: Destruction is more expensive than expected
So, for whatever reason, we're seeing quite a bit of cost from destroying weak pointers. Here's the culprit code:
~weak_count() // nothrow
{
if(pi_ != 0) pi_->weak_release(); // Consumes ...
5
votes
5answers
330 views
Is deleting an element in the middle of a std::vector still expensive with movable types?
It is generally thought of deleting an element in the middle of a std::vector to be costly, as it needs to copy every element after it down to fill the hole.
With C++11, std::vector will instead ...
2
votes
1answer
30 views
Graph:: Deletion Contraction Complexity?
I am applying the classic deletion contraction algorithm to a Graph G of "n" vertices and "m" edges.
Z(G) = Z(G-e) + Z(G/e)
In Wikipedia,
...
2
votes
2answers
47 views
shutil.rmtree in mixed hierarchy levels in python
I'm a python newbie (so far, I'm only proficient in bash scripting) and I've got a question on recursion and shutil.rmtree.
So, I have the following snippet...
keepthese = ('dir1', 'dir2', ...
2
votes
1answer
103 views
SQL Server delete query involving two tables
So I have tables A and B in SQL Server, and columns a and b respectively. I want to do the following in pseudo-query command, but I can't seem to figure it out.
I want to
DELETE FROM A
WHERE a < ...
2
votes
0answers
85 views
How to check if I'm deleting (Backspace, Delete or 'Cut') a UIElement in a RichTextBox?
I have a RichTextBox that has to contain some buttons which should be deleted properly (handled) when the user is editing content in it. I am able to check if I'm deleting (Backspace, Delete or Cut) ...
2
votes
1answer
38 views
Remove deletion anomaly?
i am developing an application where i build a database , i build my database with help of tutorial http://www.anotherandroidblog.com/2010/08/04/android-database-tutorial/ ,the code is working fine, ...
2
votes
1answer
65 views
GIT Disable tag deletion
I have a central bare repository in which a team publish (push) their commits.
In this main repository, I want to disable the tag deletion and renaming.
Is there a solution like a hook or something ?
...
2
votes
1answer
141 views
Can't delete a service executable after uninstalling it
I'm uninstalling a service like this:
using (AssemblyInstaller installer = new AssemblyInstaller(serviceFileName, new String[] { }))
{
installer.UseNewContext = true;
...
2
votes
2answers
49 views
mysql deletion efficiency
I have a table with large amount of data. The data need to be updated frequently: delete old data and add new data. I have two options
whenever there is an deletion event, I delete the entry ...
2
votes
1answer
91 views
MySQL auto increments disappeared
I have a mysql database with 60 tables most of the tables have primary keys (expect pivot tables) all these primary keys had the attribute AUTO INCREMENT
Then over night some how all the primary keys ...
2
votes
5answers
406 views
Re-using soft deleted records
If I have a table structure that is:
code+description+isdeleted
where code is the primary key.
The user creates a record, then later on deletes it. Because I am using soft deletes the isdeleted ...
1
vote
4answers
69 views
File deletion in c++
I want to delete a file whose path is stored in a std::string object.
I know remove() in , but it takes a const char * as argument.
So is there any direct method to delete the file, like a function ...
1
vote
4answers
111 views
What is the safest way to implement a tree structure?
I want to create a tree structure in my program. Right now I have something similar to the following:
class tree_node
{
public:
tree_node (tree_node* parent) : parent_(parent)
{
...
1
vote
3answers
81 views
Boost shared pointers C++ : shared pointer unable to free resource on release
I'm running into a problem where I can't get rid of the last shared pointer and I kinda need it actually.
So what I have is a manager and some worker threads. The manager keeps a collection of ...
1
vote
2answers
70 views
Why do I need to tell git I've removed a file?
I'm building a historical record of development into git from saved zip files. I'm happy about the need to git add . files to the staging area so that the selected files are committed. So far so good.
...
1
vote
2answers
82 views
Delete own Object with a callback method
I have one class which knows, when it should be deleted. An object cannot directly delete himself, and you should not call the destructor from within, so I created the following code (here pseude code ...
1
vote
1answer
57 views
Deleting the entered names in the “TO” field using NSTokenField
I am working with NSTokenField, the requirement is similar to apple mail application.
I have delegate methods to format the strings and add to the field.
Do i get any delegate method for deletion of ...
1
vote
3answers
443 views
Losing VBA code under 'ThisWorkbook' (Private Sub WorkBook_Open() )
First three elements of the background:1. I have created a Excel Template which is used, in turn, to create a 'personalised template' where user name, user comment, and save data pathnames are ...
1
vote
4answers
115 views
Design Practice: code to create before deletion in deletion test case?
I have written test case for deletion of entity. In test case i simply pick first record by select query and pass its id to deletion method. Entity i want to delete can have some child entities ...
1
vote
1answer
424 views
red black tree - element removal without dummys
I am looking for a guide how to implement the deletion of an element in a red-black-tree without using a dummy node (i.e. the leaf nodes actually being null-pointers). All implementations I found on ...
1
vote
3answers
399 views
Securely deleting/wiping MySQL data from hard disk
We're running MySQL 5.1 on CentOS 5 and I need to securely wipe data. Simply issuing a DELETE query isn't an option, we need to comply with DoD file deletion standards. This will be done on a live ...
1
vote
3answers
629 views
How can I use Array#delete while iterating over the array?
I have an array that I want to iterate over and delete some of the elements. This doesn't work:
a = [1, 2, 3, 4, 5]
a.each do |x|
next if x < 3
a.delete x
# do something with x
end
a #=> ...
1
vote
5answers
650 views
Has Dreamweaver CS5 been deleting local files instead of remote files?
As scary as it sounds.
I select a remote file, I hit delete. Instead of deleting the selected remote file, Dreamweaver chooses to delete the currently selected LOCAL file(s) - even if they're ...
1
vote
2answers
540 views
SQL: Complex Deletion help
I basically created some tables to play around with: I have Two main tables, and a Many-Many join table. Here is the DDL: (I am using HSQLDB)
CREATE TABLE PERSON
(
PERSON_ID INTEGER GENERATED ...
0
votes
1answer
43 views
Object seemingly deleting itself or memory changing after constructor
I have a game, stripped down for the problem, a GameHandler class, a Game class, and a Grid class.
The GameHandler class has a declaration of a Game object in its header file. The GameHandler ...
0
votes
2answers
42 views
File deletion/moving failing
In the code below I am trying to select xml files from an ArrayList xmls where xmls.get(i) is the absolute path of a file with extension .xml. If this file cannot be parsed by Document an exception is ...
0
votes
1answer
60 views
cakePHP HABTM, am i getting it all wrong?
I understood that every new row, causes the deletion of the rows that were there before?
What is the idea behind it? I don't believe that it is ..
So, what am i getting wrong?
Edit A
I have a ...
0
votes
1answer
18 views
[Android]I'd like my app be informed of operations on contacts, like addition,deletion
all
I'd like my app be informed of operations on contacts, like addition,deletion. I searched it all over the internet but found nothing. Could anybody help me ?
Thanks.
0
votes
0answers
45 views
Deleting a TCP/IP Port using XcvData fails
Addition of the Port goes through fine. I am using following API sequences to add the port successfully.
::lstrcpy(szBuf, TEXT(",XcvMonitor Standard TCP/IP Port"));
// Get TCP Port Monitor
...
0
votes
3answers
104 views
Deletion in binary search tree
So when i delete in binary search tree, do i need to have like 7 different cases i.e.
1.Left Leaf;
2.Right Leaf;
3.Left child with only left child.//i.e the node to be deleted is the left child of ...
0
votes
1answer
29 views
Core Data: does delete an entity remove all relationships of other entities to it?
Say if I have two entities: MySubscription and AllSubscription, MySubscription has a one to one relationship to AllSubscription, thus AllSubscription has a inverse relationship to MySubscription, say:
...
0
votes
1answer
89 views
MVC Music Store tutorial, all information reset itself after weeks of it working fine. Why is this?
I have worked through the MVC Music Store tutorials.
All the Albums, Artists, Genres and Album Artwork I added in the Admin area of the site has deleted itself and reset itself to its original ...
0
votes
0answers
58 views
unhandled exception - deletion of a private queue during an asynchronous event wait (BeginPeek/Receive)
MSDN Thread
Hi all,
First of all, please excuse any english language mistakes in the following description, because, I'm not a native speaker and well, I can't write it perfectly.
I develop for ...
0
votes
1answer
239 views
Jquery Datatable processing message doesnt go away after deletion of row
This is the code...
var oTable;
var aData;
var row;
$(document).ready(function() {
$('#example tbody tr').live('click', function (event) {
...
0
votes
1answer
432 views
Completely Delete Xcode project and all references?
Every time I try to delete my project, and create a new one under the previous name that i deleted, the icons and references are still there. I can't seem to fully delete it then start again with the ...
0
votes
4answers
199 views
VBA- removing rows without skipping a row how to?
Below is my code. I am trying to move through some rows, and if there is certain data there, then remove those rows, however the current way I have coded it, whenever I delete a row, I skip the one ...
0
votes
1answer
71 views
Pattern based file selection and deletion in Eclipse IDE
What I'm trying to is tag a batch of files for deletion within Eclipse, prior to issuing a commit via the Subversive integration to "delete" these files from the repository.
In a trivial case, you ...
0
votes
1answer
106 views
Deletion issue using fluent nhibernate in mvc 3
I've a layer name MVCTemplate.Common, having two folders Entities and Mappings.In Entities User.cs and Role.cs is as under respectively,
using System;
using System.Collections.Generic;
namespace ...
0
votes
4answers
116 views
Deleting an entire node from a singly linked list in C++
I've tried, but I can't get it to work. I need to delete an element number from a linked list. Here's what I've done so far:
class MatrixLL
{
private:
struct MatrixLLElem
{
Matrix ...
0
votes
1answer
289 views
Red Black Tree - deletion
I've implemented delete function for RBT (basing on Cormen), it looks like it works but test for deletion + printing tree in preorder gives me wrong answer. I spent few hours looking what may be wrong ...
0
votes
2answers
172 views
TableView deletion help?
I am getting the error below from the following code:
- (void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath ...
0
votes
0answers
138 views
IO.File.Copy fails, but deletes the destination file anyway
This problem occur specifically with Outlook PST files. For files in use, the function simply fails. For partly lock files, the destination is erased, and then the copy fails.
I use the ...
0
votes
3answers
553 views
Thread-safe deletion of a linked list node, using the fine-grained approach
Why is the following snippet for deleting a node in a linked list not thread safe?
edit: note every node has a lock of its own
// ... lock acquisition here
// ... assumption found to be valid here
...
0
votes
4answers
4k views
Python- Delete newline / return carriage in file output
I have a wordlist that contains returns to separate each new letter. Is there a way to programatically delete each of these returns using file I/O in Python?
Edit: I know how to manipulate strings ...
0
votes
2answers
605 views
Vectors of std::shared_ptr Lose Data
I am attempting to build std::vectors and std::maps of std::shared_ptrs, but they seem to have a habit of losing data. By that, I mean that when I push std::shared_ptrs into them, some of them will ...
0
votes
4answers
566 views
PHP, MySQL, Categories and Subcategories - The Deletion
I have a MySQL table like this:
CREATE TABLE categories
(
ID INT NOT NULL,
Name VARCHAR(100) NULL,
Parent INT NULL,
PRIMARY KEY (ID)
)Engine=InnoDB
What I'd like to do is ...
0
votes
5answers
212 views
Speed up deletions on SQL Server 2005?
Most questions I've seen on similar subjects relate to how to speed up inserts into a table.
I want to know what can I do to speed up deletes?
I can't truncate nor drop a table, I have to do ...
0
votes
2answers
226 views
UITableViewCell: Allowing Selective Deletion
I have a table view and want to allow reordering of all cells, however there are certain cells that i do not want to be allowed to be deleted. when the UiTableView is put into deletion mode i do not ...