Refers to the deletion of files from a filesystem or records from a database, or the deallocation of objects in memory. Can also refer to the DELETE which is one of the HTTP protocol methods.
0
votes
1answer
45 views
NHibernate – can't remove child object
I have the problem with removing object from the child collection.
I have a parent class with child objects collection.
public class Document
{
public Document()
{
Pages = new ...
0
votes
1answer
28 views
RemoveDuplicates only deletes if the positions are 1 and 2
This is a continuation Removing duplicates from a DoublyLinkedList C++. Anyway, i have gotten so far as to remove the duplicates but it only removes a duplicate if the positions are one or two. Can ...
0
votes
3answers
55 views
Removing duplicates from a DoublyLinkedList C++
Hey im trying to remove duplicate items in c++. Ive managed to get the object to = null by using the objects default constructor. But i am unable to completely remove it from the list. This code ...
0
votes
1answer
75 views
How to remove duplicates from a doubly linked list by full name
I have a doubly linked list in which it stores player objects. The player object contains first name, last name, level and experience. Im trying to create a function that will remove a duplicate ...
1
vote
1answer
70 views
Can I tell Inno Setup *not* to create unins000 files
I'm using Inno Setup to package a third-party installer with another EXE I built to prep our firm environment for the install. I'd really like to delete all the installer files from the end user's ...
0
votes
1answer
61 views
How to disable swipe in particular direction on UITableViewCell in iOS?
I have implemented swipe-to-delete option in my table view by adding the following two methods:
- (BOOL)tableView:(UITableView *)tableView canEditRowAtIndexPath:(NSIndexPath *)indexPath
{
return ...
1
vote
1answer
88 views
C# Delete or change text from .dat file
I have a program which saves a persons information (Name, Surname, DOB ect.) to a .dat file named Records.dat. Which is the ideal method of deleting one person's information from the file and either ...
0
votes
2answers
27 views
Javascript delete object from object
i have following function that should delete an object in object under following id:
contactDeleteCounter++;
console.log(orderContactIds);
console.log(deletePosition);
...
0
votes
0answers
21 views
Delete rows on InnerJOIN in web-sql HTML5
in continuation with LINK
I need to get the correct DELETE query . The one given in the above link is causing errors.
I need to execute this query on web-sql provided by HTML5
1
vote
2answers
23 views
Why does tr -d replace the target with -?
According to the tr man:
-d, --delete delete characters in SET1, do not translate
However
$ echo "abc" | tr "a" -d
-bc
Now this could be removed with an additional command such as
...
0
votes
1answer
149 views
Remove an item from a UICollectionView
I have a set of images showing in a UICollectionView. When the user taps on an image, it spawns a UIActionSheet with a few options for that image. One of them id removing the photo from the ...
0
votes
0answers
42 views
SQL: Delete Compare Data with openquery
Hello i have a problem with opequery. I try to delete data from sql server before i can do this i will compare data on an ORACLE Server.
delete FROM dbo.KONDINFO ko
inner JOIN OPENQUERY(fsnprod, ...
0
votes
0answers
19 views
Migrate model object on save in Django
I want to create two models in Django
class BlogPost(models.Model):
body = models.TextField()
delete = models.BooleanField(default=True)
def save(self, *args, **args):
if ...
1
vote
1answer
86 views
Android Delete Image from Gridview
I am trying to simply delete an image from a gridview. I was having troubles earlier with nothing deleting, but now that isn't a problem since I determined that I just need the correct file path. ...
1
vote
1answer
257 views
“Deleted row information cannot be accessed through the row” trying to remove unused rows from my datatable
I'm grabbing data, sticking it in to a DataTable, and displaying it in a datagridview bound to that table. Im trying to make it so that data in the datatable that is not included in the current grab ...
0
votes
1answer
38 views
Truncate or Delete tables from the MySql database
I have a databse called store having 100 tables having too much foreign key references with tables, having thousands of records.
Problem:
Is it possible something like truncate to delete all the rows ...
-2
votes
1answer
67 views
How can I stop being Facebook Developer? [closed]
How can I stop being Facebook Developer? How to revoke access of Facebook Developer features? I am not a real developer and I have done this by mistake! How can I fix this?
0
votes
0answers
111 views
Hibernate and Foreign Key Constraints
I have several Hibernate mapping files with many-to-many and many-to-one sets referring to other objects. I am trying to implement a back office scheme that can delete objects but I constantly run ...
1
vote
1answer
77 views
Android Delete Image from SD Card with OnClick
I'm trying to simply delete an image from a simple app. I have it so that when you click on the image, it'll bring up an a dialog with the option to delete it. I thought this would just be something ...
-1
votes
1answer
71 views
Would a virus scanner catch me? [closed]
Just wondering,
Say I made a simple, simple program (in C# cause I like it) that just deletes all the folders that it can from the PC / drive.
Would a virus scanner pick that up?
Surely that would ...
0
votes
1answer
70 views
Optimize Delete [SQL Server 2000/2005/2008]
I wanted to know if there is any possibility to optimize a query like this one :
delete tx_txn_detail
where transaction_id BETWEEN 1 AND 1000
Where transaction_id can be between 1 and 1000 or ...
0
votes
1answer
102 views
Deleting Registry entries using reg delete
I am trying to delete registry values using reg delete in a batch command. The problem I am having is that I can't delete the value. Here is what I am trying:
REG DELETE ...
-4
votes
1answer
27 views
Avoiding accidental delete of files on external hard disc [closed]
Hi recently I deleted my huge collection of data that I stored in my hard disc, Accidentally.
ok, I recovered it using some recovery software.
But I want to set my hard disc in such a way ...
0
votes
1answer
104 views
Is it possible to delete multiple files at a time from hdfs using hadoop filesystem API?
hadoop shell has the command hadoop fs -rm /dir/*. But i dont find a similar one from API.
1
vote
2answers
43 views
Certain users edit database
I was wondering if there was a way of going about having only certain users able to delete tables from an sql database using PHP, for example only managers are allowed to add and delete whereas others ...
0
votes
2answers
37 views
PostgreSQL: how to delete rows using a join
I've got a problem to delete records from a PostgreSQL table, using a LEFT JOIN.
I'd like to delete rows I get with the following query:
SELECT * FROM url
LEFT JOIN link_type ON url.link_type = ...
0
votes
1answer
58 views
How can I delete a line from a file if it contains a certain string using PHP?
I have a Delete link in my profile page which links to "delete.php?snum=" . $snum. I have a $snum=$_GET['snum']; in delete.php. I have a file named "SLBrecords.csv" which looks like
12345 Barney
...
0
votes
2answers
80 views
How to delete multiple rows in SQL where id = (x to y)
I am trying to run a SQL query to delete rows with id's 163 to 265 in a table
I tried this to delete less number of rows
DELETE FROM `table` WHERE id IN (264, 265)
But when it comes to delete ...
13
votes
4answers
307 views
Is the call to operator 'delete' synchronous?
I was wondering if the call to operator delete is synchronous or not. In other words, if I do:
delete p;
does the C++ Standard guarantee that only after this call finishes execution the memory is ...
0
votes
0answers
56 views
JavaScript delete object
I'm doing some ajax request and loading some new content.
In my homepage i'm using :
var App = function($el) {
this.$el = $el;
if ($.isFunction(this.init)) this.init();
}
App.prototype = {
...
0
votes
1answer
56 views
Ruby (Errno::EACCES) on File.delete - previous solution doesn't work
I am having exactly the same issue as the poster of this question : Ruby (Errno::EACCES) on File.delete. Unlike him, the change provided in the solution for him does not work for me.
Here is my ...
0
votes
0answers
39 views
Delete item from AJAX Toolkit ReorderList, position messed up
I have a Reorderlist which works pretty well. The only thing is that if I delete an item from the list, the item gets deleted in the database (just like it should) but the positions don't get updated. ...
0
votes
0answers
33 views
How to delete whole library “SELECTIE” With ODBC command c#
How to delete whole library "SELECTIE" With ODBC command c#
this is my application
I need a command which deletes all the records in "SELECTIE"
It needs to delete only the "SELECTIE" part, after it ...
1
vote
1answer
108 views
Data type mismatch in criteria expression. -Microsoft JET DATABASE ENGINE
In the code below, it was a "delete" button used in OLEDB connection.
My database table name is tblinformation.
Btw, the error shows:
Data type mismatch in criteria expression. `-Microsoft JET ...
0
votes
3answers
68 views
Delete a div using “this” with Javascript
What I would like to do is to create a div by clicking on a button. In that div there will be another button if clicked will delete the div that it is in. So potentially the first button will create ...
1
vote
2answers
68 views
Will using delete[] like this end in a memory leak?
I'm sure this has been asked before, but the search terms are failing me for my specific situation.
Essentially, I'm creating a 2D tile engine. For overall efficiency and to reduce a bit of ...
-2
votes
2answers
49 views
How to delete rows 1-12 in a MySQL table with PHP
How would I go about doing this? I already have an id field with auto increment and primary key. But yeah I need a script that does this. Everywhere I looked it just shows me how to delete single ...
1
vote
2answers
95 views
Opencart: custom prodcut delete with confirmation dialogue box
i had changed some default opencart admin product list filter functions, thats as follows: if i need to delete product from list i replace instead of check box with single click each product delete ...
-3
votes
1answer
60 views
PHP - MySQL syntax error in “DELETE FROM” [closed]
Well, I'm making a PHP script that find any row WHERE user_id is equal to the user_id of the user logged and if find any row with the same user_id as the user, "moves" all rows from friend_requests ...
0
votes
1answer
70 views
Error when trying to delete data from table with LINQ to SQL
In LINQ I am trying to write a query that will, once a button is clicked, delete a record from a database table, namely "Amendments_Awaiting_Approval". This row will be found and deleted based on the ...
0
votes
2answers
45 views
Objective C - Disable Delete for 1 Cell in UITableView
I have a UITableView. It pulls information from the address book where needed. I also have the bottom cell programatically made to be a button that loads up the address book.
My problem is when i ...
1
vote
1answer
22 views
windows github tool - use branch unpublish or delete?
I'm new to Github and I've been using the windows github tool which has proved a great help and handled a lot of things like SSH keys, prompts commits, discard a commit, revert commit, and it has a ...
0
votes
1answer
13 views
delete unused pics from server when a post is deleted
Is there any way to delete the image (featured and/or not) related to a post at the same time a post is deleted in wordpress?
Thanks!
0
votes
0answers
17 views
Delete a folder quickly in Linux FAT32
I would like to modify the Linux kernel so as to be able to quickly delete a folder using FAT32.
To do this, I would like to ask for help. How does deleting a folder that does not contain other ...
0
votes
2answers
88 views
SQL: Delete all rows that don't contain the max value in group
I have a twist to this popular question and accepted answer: How can I SELECT rows with MAX(Column value), DISTINCT by another column in SQL?
I have a table structured similarly but instead of ...
0
votes
1answer
27 views
delete mysql_array_fetch
I have the following code and the plan is to display the data from the database but allow for the administrator of the site to delete a row if a job is no longer available. I have put "Delete" where I ...
0
votes
3answers
99 views
How to delete columns with NA in R?
I have a data.frame containing some columns with all NA values, how can I delete them from the data.frame.
Can I use the function
na.omit(...)
specifying some additional arguments?
0
votes
1answer
122 views
How can I delete the selected Lines in Multi line Text Box?
My code below here I used "SelectedLines" to find the current selected lines by user, AllLines to find the no of total lines in Multi line text box. in last for loop when i=1 it runs successfully but ...
1
vote
1answer
65 views
Delete project from TFS online with VS2010 Professional (TFSDeleteProject isn't on my computer!)
I have Visual Studio 2010 Professional, and I've been using the TFS service at visualstudio.com. I've read this question and it's answer as well as other things around the web. However, ...
0
votes
0answers
25 views
setReadOnly() vs canWrite()
I'm trying to delete a file but no matter what I try it doesn't seem to work. I set the file to read only using setReadOnly() and then immediately check to see if I can write to it and I can. I'm ...


