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
2answers
265 views
Add button next to TextView programmatically
i have a ListView of TextViews of countries and i did a OptionsMenu item after hes clicked short press on one of the TextViews will delete the pressed textview.
i would like to know if there is a way ...
0
votes
0answers
5 views
Deleting websocket connections in JavaScript with NodeJS
#!/usr/bin/env node
var WebSocketServer = require('websocket').server;
var http = require('http');
...
1
vote
1answer
19 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 ...
-2
votes
2answers
181 views
MySQL delete and update multiple rows
Say I have an entity A in one table and an arbitrary number of other entities B related to it in other table.
I have a situation where I need to replace all those B entities with a list of new B ...
2
votes
2answers
734 views
NHibernate.ISession.Flush() is taking a long time after a Delete()-Operation
In my application I would like to clear/empty a table (which is the only one) in my SQLite-DB.
I am programming in C#. _session is of type NHibernate.ISession. Here is my code:
string queryFmt = ...
0
votes
1answer
15 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
22 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 ...
105
votes
16answers
49k views
Cannot delete directory with Directory.Delete(path, true)
I'm using .NET 3.5, trying to recursively delete a directory using:
Directory.Delete(myPath, true);
My understanding is that this should throw if files are in use or there is a permissions problem, ...
0
votes
0answers
5 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 ...
0
votes
2answers
43 views
Where does trac store the users and passwords in a default installation?
I have a long list of users to delete. I logged in the trac.db but I don't find anything similar to a user/password table. where does trac store the users and passwords in a default installation?
-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
1answer
20 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
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 ...
11
votes
3answers
7k views
How to delete/create databases in Neo4j?
Is it possible to create/delete different databases in the graph database Neo4j http://neo4j.org/ like in MySQL? Or, at least, how to delete all nodes and relationships of an existing graph to get a ...
7
votes
11answers
17k views
How to delete a folder in C++
How can I delete a folder using C++? I found something on the Internet, but it did not help me :(
Can somebody help me?
Thank you
-1
votes
0answers
12 views
Facebook app silently deleted [closed]
Some of my apps' users contacted me today to ask me why they couldn't find my Facebook app anymore.
It appears that, without my knowledge or any message from Facebook, my app was deleted.
What makes ...
0
votes
2answers
14 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
34 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
29 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 ...
20
votes
5answers
5k views
Well, how does the custom deleter of std::unique_ptr work?
According to N3290 std::unique_ptr accepts a deleter argument in its constructor.
However, I can't get that to work with Visual C++ 10.0 or MinGW g++ 4.4.1 in Windows, nor with g++ 4.6.1 in Ubuntu.
...
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
20 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
13 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
24 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
8 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 ...
0
votes
1answer
26 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 ...
-2
votes
1answer
55 views
C++, how to delete member **object (using delete)
I have an **object (**personnel) as a member inside(composition) another object, I want to free the memory that **personnel points to and point it to another **temp (personnel=temp), without deleteing ...
1
vote
2answers
69 views
Removing a line from a file via button action
YES, I have searched the method to remove a specific line via comparing&matching, but mine is different from the situations I've searched, and the wrong action takes place.
The code here is the ...
3
votes
2answers
55 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
...
1
vote
3answers
2k views
svn problem :Cannot verify lock on path
when I want to delete some files , it happen to show me the error below:
Commit failed (details follow):
Cannot verify lock on path
'the file name...';
no matching lock-token available
If you want ...
0
votes
2answers
59 views
SQL Server delete rows not in source based on parameters
I have a table that needs to be updated hourly based on weather forecasts coming in. The create table and merge works great and I have been using them for the last while now.
CREATE TABLE ...
21
votes
3answers
6k views
Deleting rows with MySQL LEFT JOIN
I have two tables, one for job deadlines, one for describe a job. Each job can take a status and some statuses means the jobs' deadlines must be deleted from the other table.
I can easily SELECT the ...
117
votes
7answers
91k views
Deleting Objects in JavaScript
I'm a bit confused with JavaScript's delete operator. Take the following piece of code:
var obj = {
helloText: "Hello World!"
};
var foo = obj;
delete obj;
After this piece of code has been ...
0
votes
3answers
2k views
Left delete icons not appearing while UITableview edit mode
After hours of debugging your are my last hope.
I have a core data/ uitableview based app. Actually 80% of the code so far is equal to the Apple Sample app CoreDataRecipes. My problem is that when I ...
4
votes
3answers
455 views
Mysql - what is the faster way to delete old records
I have a table with about 35 million rows. each has about 35 integer values and one time value (last updated)
The table has two indexes
primary - uses two integer values from the table columns
...
0
votes
2answers
30 views
delete 200G ( 465025579 records ) of data from sql server
I have database with one of the tables that got over populated ( 465025579 records ), what is the best way to delete the records and keep only 3 months of the records. without the device to hang.
...
0
votes
0answers
12 views
How to delete hash of array of hashes completely
I have one hash of array of hashes,like below, I want to delete one key value of that array,but 'undef' is coming.wheather I can use pop or slice or other.
After using data dumper it looks like,
my ...
1
vote
0answers
19 views
Delete url not throwing any response in nodejs
Hi i am having a nodejs server which will handle get and post requests.If a user gives a wrong method it throws an error. Below is my code
app.use(connectDomain()) // For error handling
...
0
votes
2answers
23 views
How to delete a string from a file in Ruby with user input
I figured out how to search a file to locate a specific string based on user input, but I don't know how to delete said string once I've located it. I've seen various grep methods but don't know how ...
0
votes
2answers
34 views
Unable to delete Team Foundation Service project
I'm using Visual Studio Pro 2012, with Team Foundation Service. I have several projects on the server I want to delete. I'm trying to use Developer Command Prompt for VS2012 to delete a project on the ...
0
votes
0answers
45 views
image delete by php and mysql
hello am trying to add a delete image page that within a album on a group by using mysqli and php
The Album is sitting in a group so the link will have id=42756d626c65426565 which is the group name ...
0
votes
3answers
31 views
Grails: Delete relation Domain
I want to asked about my project.
I Have Two Domain like this
class Group {
String Name
String Description
}
class GroupDetails {
Group group
User user
}
My trouble is, How can if i ...
1
vote
1answer
931 views
How to delete the virtual directory entry from IIS?
I have written some code to delete Virtual Directories, however all that it is doing is that it deleted the folder structures beneath the Virtuals and not the actual virtual entries in IIS, so that if ...
0
votes
1answer
30 views
Java implementation of BST delete node
I'm trying to make a method to delete a node in a BST and its not working..I'm using a Node class I made myself.. tried debugging but didnt get much help on addressing the error in the code.
...
0
votes
1answer
37 views
Showing related entities when delete
I have a model with some relations mapped with NHibernate and it is working fine, for sample:
public class A
{
public int Id { get; set; }
// other properties
public ICollection<B> ...
0
votes
1answer
23 views
Jquery drag & delete confirmation popup implementation
I'm new to Jquery and I would appreciate your help.
I have X list of items and a recycle bin. Idea is to drag one of the X list items and drop into the recycle bin.
When I drop it into the bin, I ...
19
votes
4answers
29k views
SQL DELETE with JOIN another table for WHERE condition
I have to delete rows from guide_category that have no relation with guide table (dead relations).
Here is what I want to do, but it of course does not work. :)
DELETE FROM guide_category AS pgc
...



