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.
3
votes
4answers
67 views
Why isn't my remove node function working?
I've checked the boards and could not find any help with this. I find it easy to implement recursive functions given base and general cases, but this doesn't work the way I do it. I'm supposed to ...
12
votes
2answers
159 views
Is calling delete on the result of a placement delete which used operator new okay?
If I do
struct MyStruct { ~MyStruct() { } };
void *buffer = operator new(1024);
MyStruct *p = new(buffer) MyStruct();
// ...
delete p; // <---------- is this okay?
is the delete ...
0
votes
1answer
25 views
Adding Delete button to a data binding ListView
I'm new to Android! I've created a ListView and bind it to an adaptor to display data from a table. It works great. I can select on a row and it display the product name that I'm selecting. Now ...
1
vote
1answer
56 views
Why does my script periodically freeze while deleting millions of files?
My goal was to delete 10 million temp files from dir. So, I tried to write a Python script to do this. The first scenario looked like that:
#!/usr/bin/python
import os,sys
dirname = os.getcwd() if ...
0
votes
1answer
15 views
Remove specified tags in XML (notepad++)
I have a (very) big XML file for my gps track. It's built like this:
<trkpt lat="45.4818095" lon="3.76271898">
<time>2010-08-29T17:20:52Z</time>
</trkpt>
...
0
votes
1answer
11 views
Numpy delete repeated rows
I simply need to remove the rows that are repeated in an array but maintain one of them, I can't use unique because I need to maintain the order.
Example
1 a234 125
1 a123 265
1 a234 125
1 a145 167
1 ...
0
votes
3answers
32 views
Action Script 3. Delete object when mouse clicked
I'm creating flash game, Idea is falling objects (in this case apples) from the sky and player need to click on apples, after apple is clicked It must be deleted and Score updated by 10 points.
Here ...
0
votes
0answers
12 views
Shadow tables and relations
I have two tables(News and Content) and two shadow tables(News_shadow and Content_shadow) of them.
I've set a foreign key in the content table with ON DELETE CASCADE and I have after delete triggers ...
8
votes
7answers
194 views
Very slow DELETE query
I have problems with SQL performance. For sudden reason the following queries are very slow:
I have two lists which contains Id's of a certain table. I need to delete all records from the first list ...
2
votes
2answers
34 views
Vim: delete lines based on character(s) in specific position on line
I'm working with a large text file and need to be able delete lines based on the value of the 25th character on the line, ie if it is equal to H, K or Z. Is this possible, either just by matching one ...
0
votes
1answer
28 views
Deleting row in R based on meeting conditions
I am reading in a very large dataset using read.table. Once I've read the data in, I want to keep only those records that fall in a certain lat/lon region. So basically I want to define upper and ...
0
votes
1answer
44 views
codeigniter. delete_files not working when trying to delete image from directory
I am trying to delete an image using a button.
when i click the button i use
onClick"'.delete_files(assets/uploads/.$image->filename).'"
But nothing is happening. The image is still where it was ...
0
votes
3answers
32 views
Deleting large amount of data from SQL Server database
I am trying to purge large amounts of historical data from our database for any data older than 13 months.
I have written a stored procedure for truncation, however when I try to run them I have two ...
-1
votes
3answers
36 views
how to delete all post in category using sql queries? [closed]
I am using wordpress. And I have a huge number of posts. So, I can delete them manually. How to delete all post in category using sql queries ?
Sorry for my poor English ! Thank you very much !
0
votes
1answer
11 views
making Jtable with add,delete,reset and sorting
Hey does anyone know how to make program using JTable with some function with the column that contain variable type: String, Double,Int so it will contain 3 column with different variable
add Row in ...
0
votes
1answer
67 views
Add, edit and delete function to my javascript
I'm looking to add edit and delete functionality to the following JavaScript and I'm not sure where exactly to start.
This functions just fine as a input add but It needs to be editable and ...
1
vote
2answers
34 views
Delete from inner join mysql query - two tables multiple conditions
Chaps,
Been tearing my hair out for the last 48 hours and it's time to admit I can't hack it.
I have two MySQL tables:
Table AllProducts
AccountID, ProductOwner, ProductNumber
100001, Tom, ABC1 ...
0
votes
0answers
29 views
jframe delete default textfield
I have made a jframe login window.the username textfield has some default text on it. The cursor appears by default on the username text field. I would like this default text to be deleted when the ...
0
votes
0answers
9 views
Workaround Django error on model delete due to empty file field w/Thumbnailer
I have a model with an EasyThumbnailer file field, using Boto storage and UnDelete, and some instances of that model have an empty file field that prevents me from deleting them:
...
-1
votes
3answers
66 views
Deleting current file in vim
How can I delete from the disk the current opened file within vim? Would be nice to also close the buffer.
I see you can use NERDTree for that, but I don't use this plugin.
0
votes
1answer
33 views
Delete all files but not directory
echo Process Run time: %DATE% %TIME% >> log1.txt
echo Disconnecting the Existing Drive if Any >> log1.txt
net use E: /delete
net use E: \\myserver_ddl\mydrive$ /USER:user1\my_test ...
0
votes
2answers
61 views
Program deleting lines in my file
I got a question. I have a program where I am trying to anchor the beginning of lines with a pipe (|). However, when I execute it, it reduces or deletes lines in my file. As you will see, I am not ...
2
votes
2answers
105 views
(SOLVED) Multiple uses of new and delete
I'm simulating a traditional card game between two players using C++: I defined a "card" structure so that
card sample;
cout << sample.numb << " of " << sample.suit << " ...
0
votes
1answer
61 views
SQL - return deleted rows
I would like to combine a SELECT which returns rows and a DELETE which deletes a subset of the rows I selected?
Is this possible?
Cheers
Geoff
2
votes
2answers
68 views
How to add and delete table in java
I have a code for making table and sort the data that input there. What if i want to add some action using button to add the row than fill the data and can delete the row too.thanks
here is my code
...
0
votes
2answers
41 views
VB.NET Delete multiple files
I'm trying to delete multiple files in same folder with vb.net, but I haven't succeed yet. Help please?
I tried
Dim FileToDelete1 As String
Dim FileToDelete2 As String
Dim FileToDelete3 As String
...
0
votes
1answer
26 views
How to remove object from database in test in Grails
I have got a domain:
MyClass
with fields
String a
String b
I got a test:
void testRemoveMyClass() {
MyClass x = new MyClass()
x.setId(3)
x.setA("AAA")
x.setB("BBB")
...
1
vote
2answers
64 views
bash on Linux, delete files with certain file extension
I want to delete all files with a specific extension - ".fal", in a folder and its subfolders, except the one named "*Original.fal". The problem is that I want to delete other files that have the same ...
0
votes
1answer
24 views
solr delete by id is working ,but delete by query isn't
everybody, I'm using solr 4.0 beta. I found that I am able to delete a document by id but I can't do the same work using delete by query, for example noticeId:728, and I can use the same query syntax ...
0
votes
1answer
22 views
Deleting websocket connections in JavaScript with NodeJS
#!/usr/bin/env node
var WebSocketServer = require('websocket').server;
var http = require('http');
...
1
vote
1answer
23 views
IntelliJ delete files from project but from disk
When I delete a file (either a class, a library or anything) from a project in IntelliJ , the file will also be deleted from the disk physically! Is there any way to avoid this? I may still need the ...
0
votes
1answer
16 views
Editing an excel 2003 Macro, Deleting to Copying
I am currently using this code to find and delete all rows with a certain criteria... How can I edit it to just move the rows to another worksheet instead of deleting them?
Sub Delete_Rows()
...
0
votes
1answer
30 views
deleting TXMLDocument object Embarcadero
I've got an object to delete:
XMLDoc = new TXMLDocument(NULL);
but I have no idea how to do that... it's not working:
delete XMLDoc;
XMLDoc->free();
When I try just delete object the ...
0
votes
0answers
6 views
Rails devise denied access user on edit and destroy goods
I have two models User and goods, an user can insert has_many goods and an good belong to user so :
i would users can't after insert a good , delete or update the good..
I use Devise for the Users ...
-2
votes
1answer
40 views
Different SQL Delete Statement
I have a table 'Department' inside a database and I would like to delete some rows. I would like to ask if
The result of this SQL delete code:
DELETE FROM ITD
FROM Department AS ITD
WHERE ...
-3
votes
0answers
19 views
Need help! silly error in Advanced Diary [closed]
I am using Advanced Diary and I need help. Recently I often get this error "Cannot delete entry. Database has been blocked by another user. Please retry this action in few seconds." when trying to ...
0
votes
0answers
19 views
Android- Delete File onLongListItemClick
To open a file from listview I have this code:
@Override
protected void onListItemClick(ListView l, View v, int position, long id) {
// TODO Auto-generated method stub
...
0
votes
0answers
43 views
How to fix this js script to send a value by method post
I have This Java Script And I want to click ok and call detel method in my controller
but its not working and I dont't know why im new in js
I need to but 2 values in this submit
id and name
Also I ...
0
votes
1answer
21 views
How to delete everything after special charcter in each column in Excel document and divide two words from one cell to two separate cells?
I have excel document with one cloumn. It looks like this:
car /VIj+
car, cars /VIj-
home, homes /VKjsah+
homeless, homeless /VKjsbh+
.
.
.
And I need to delete everything after symbol / ...
0
votes
2answers
17 views
Deleting a line from a text file (python)
how to you delete a specific line from a text file using readlines()
like:
f_open = open("textfile.txt", "r")
lines = f_open.readlines()
how do you use lines to choose a line in textfile.txt and ...
0
votes
0answers
42 views
DELETING duplicate records with different ID
I'm struggling with a query, and I have searched the sourceCode and Google trying to find the solution but no luck.
I have a table that consists of 5 unique IDs and some data. The problem is that ...
1
vote
2answers
35 views
Django: delete related object via OneToOneField
Is there some clever way how to perform delete in this situation?
class Bus(models.Model):
wheel = OneToOneField(Wheel)
class Bike(models.Model):
wheel = OneToOneField(Wheel)
...
0
votes
1answer
30 views
C++ Deleting Private Array in Copy Constructor and Assignment operator
I'm trying to implement a container that allocated memory to the heap, but it seems as though my base constructor and my argument constructor don't like each other. Below, I've posted the code without ...
0
votes
0answers
11 views
Excel Auto Delete
I'm a total excel newbie, so dumbing down your answers as much as possible would be super helpful.
I'm dealing with a table that has around 600.000 lines of data. Entries in Column A are repeated ...
0
votes
1answer
26 views
How to delete multiple lines of special characters in vi editor
I would like to delete multiple lines from a text file using vi editor.I can actually grep on such special patterns and list out them but how can I delete them from a file on the fly.Please share your ...
-2
votes
0answers
16 views
Supress a keypress (GetAsyncKeyState) [closed]
In my project, i use the api GetAsyncKeystate and i proceed like that..
I want to detect a keypress with getasynckeystate
I searched and i find how to do that.
Now, my app detects the F1 key, but i ...
0
votes
3answers
25 views
MySQL select from database where not in
I need to clean records from one database according to that if they not exists in other.
It's kinda hard to explain it so here is example:
Table Users
-----------
id
username
password
Table Articles
...
0
votes
0answers
9 views
Batch file error on Windows server 2003 server R2: _“for was unexpected at this time”_
I found the below batch file over internet. It basically deletes the folder based on last modified date.
The batch file runs perfectly fine in my Windows XP laptop, but when i try to run the same on ...
3
votes
2answers
62 views
SQL stored procedure - Deleting each row that matches input list
I need to make a stored procedure that takes a userId and a list of categoryIds, and
delete any row that matches, from a specific table.
Pseudo code:
@categorylist int[]
@userId int
...
0
votes
1answer
30 views
(django) when I delete the model, How can i delete the inlines data and the uploaded file
models.py
class Issue(models.Model):
issueId = models.AutoField(primary_key=True)
title = models.CharField(max_length = 20)
year = models.IntegerField()
issueDate ...






