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.
-1
votes
0answers
7 views
Deleted App and Page [closed]
When my programmer created the APP for our website, he also created a page for it through APP.
Since we can't use that fan page as ADMIN, I deleted the APP. However the page that was created through ...
0
votes
1answer
36 views
Remove character starting with x and ending with x and everything between it in a string.
I'm fairly new to Python but I have done my research and as a last resort I've turned to you guy for help.
The problem: I want to remove a specific code within a question. The code changes position ...
0
votes
3answers
45 views
Delete operator segfaults when the constructor throws an exception
Best to start with code to get an understanding of this
#include "Hello1.h"
#include "Hello2.h"
int main(int argc, char ** argv)
{
// Hello1 and Hello2 are derevied classes of Hello
// And ...
1
vote
2answers
50 views
SQL - Delete a column from a table without changing the environment
I'm working on Oracle SQL database, quite big database. One of (among 150 tables) this table has to be changed because it's redundant (it can be generated through a join). I have been asked to delete ...
0
votes
1answer
55 views
Dynamically Add a Delete Row jQuery DataTables
I am trying to dynamically add a row to a table with an edit/delete column. When delete is clicked, I want to remove the clicked on row.
I have initialized my table and the data in the following ...
1
vote
1answer
35 views
Unable to delete Linux user using PHP and bash script
I'm able to delete linux users directly from the shell using the command ./del_user.sh
del_user.sh is as below
#!/bin/sh
userdel username
When I run this script from a PHP page, it doesn't work.
...
0
votes
1answer
26 views
QT Remove Horizontal header of table
I have a function setHorizontalHeader,which adds a header to the table by adding header items one by one using setHorizontalHeaderItem.If I want to delete a header which function should I use?
Looks ...
0
votes
1answer
12 views
MySQL Delete Join error
I have a weird error cropping up in my delete query. I have 2 tables, one holds menu items. Another holds mapping information which maps an activity id in another table to the menu id.
I have the ...
0
votes
2answers
23 views
Need to delete from multiple JLists instead of just the one
I have 3 jlists. I have a button that is used to delete a selected item from the Patient Jlist but i also need it to delete from my history Jlist and Invoices Jlist. I have it deleting from one but I ...
0
votes
1answer
10 views
DOM Excptn 8: Adding a Picture to a Div
I'm creating this function that will add an image to a div that I'll later code to delete the information in said div. I keep getting the DOM Exception 8 error on this portion of the code. Any help ...
2
votes
1answer
35 views
HTTP PUT, DELETE and I/O streams with PHP
Is there any way I can access data that was sent via HTTP PUT method other than $putdata = fopen("php://input", "r");?
I have never worked with PUT and DELETE methods and $putdata = ...
0
votes
5answers
56 views
I must need to open two connections to execute two different queries?
Currently I am executing two queries against two different tables and getting this exception,
The connection was not closed. The connection's current state is open.
This is what I am trying to ...
0
votes
1answer
39 views
Bash script delete folders total size
I am hoping to run a bash script that pretty much delete any folder inside /storage/* that has a total size that is less than 5 megs. Issues i face is that the folders inside /storage/* has sub sub ...
-1
votes
1answer
33 views
Search a string and alter /replace string after “=”
Suppose I am in following directory A/B/C/prop and need to check e0and e1 files out of other 100 files.In these two file i have following entries:
$DBConnection_target=targetname
...
0
votes
0answers
21 views
cascade delete mysql innodb fails with django 1.5.1
Same error described in https://code.djangoproject.com/ticket/15776
I have a model 'Follow' and it looks like
class Follow(models.Model):
from_follow = models.ForeignKey(User, ...
0
votes
0answers
19 views
Removing a file named '…' in Windows 8 [migrated]
Completely by accident, I created a file named ... using Grunt.js for Node in Windows 8.
Is it possible to remove this file without having to reformat the partition?
-1
votes
3answers
38 views
How to delete a node searched by attribute with its child nodes in xml by php
My XML file is given billow I'm using the xml as external file.:
<?xml version="1.0"?>
<custscales>
<custscale sclNo="1" type="lin">
<scaleName>Custom Scale ...
0
votes
1answer
26 views
Using Javascript to remove url after redirecct
I have a chrome extension that redirects the (horrible) chrome new tab page to one of the user's choosing (in my case, a html file stored locally)
It works fine BUT it leaves the url ...
0
votes
1answer
39 views
Deleting via Batch file
I want to create a batch file to delete the following path across the network via automated scripting.
So far I'm using :
REM <start>
@echo off
rmdir /s /q c:\users\%allusersprofile%\ppTemp\
...
0
votes
1answer
30 views
Delete duplicates and preserve old ones - Using headers in MySQL
I need to eliminate similar duplicates
I.E. I have a column with the following values
old1950
old1933
old1985
new_1950
new_1985
new_2008
After run the delete command should be left
old1950
...
1
vote
1answer
65 views
Delete first four rows in Excel with Powershell
I have a powershell script that opens an excel file, re-assigns a blank password, and then saves the file. I want to add a task to the script to remove the first 4 rows of the excel file before ...
-1
votes
1answer
14 views
Need help on how to convert this select to a DELETE statement:
I need help as to how to convert this select to a delete statement.
SELECT stud_term_sum_div.id_num,
stud_term_sum_div.hrs_enrolled,
stud_term_sum_div.transaction_sts,
...
0
votes
1answer
49 views
Php unlink can't remove jpg files
My script for deleting files from my server can delete all images file that hasn't the file extension of jpg.
Why can my script delete all other files that's not jpg?
My code is.
<?php
...
0
votes
1answer
86 views
Implementing Secure file delete using C++ [closed]
I'am reading https://en.wikipedia.org/wiki/Gutmann_method but it's little bit hard for me.
I'll try to understand but can anybody help me if there's another way to implement secure file delete?
-1
votes
2answers
61 views
How to delete a single record with where condition in cakephp?
I am using cakephp2. How to delete a single record with a condition ?
I have a table named posts with fields id,title,post. primary key is id.
I would like to delete the single record with id=5 ?
How ...
1
vote
1answer
69 views
Magento product delete not working
I am using Magento 1.7.0.2 and have encountered a problem when deleting products. I create 20 products in a clean install of magento using the product import routine. The products where assigned to ...
-3
votes
0answers
47 views
How could i correctly delete a char ** array? [closed]
My code:
CTudMunka.cpp:
CEloadas.cpp:
main.cpp: (http)://pastebin.com/4wXRpiVX
After i run, i get errors.
=====Backtrace======
=====Memorymap======
Aborted(core dump)
Valgrind says: 5 allocs ...
0
votes
1answer
42 views
Oracle identify if a delete will cascade
I am working on a legacy oracle database system (10g) and I do not have detailed schema information. I need to find out if deleting a particular record in a table will cause cascading deletes in other ...
0
votes
1answer
14 views
SQL Delete based on max value
I have a table that has a composite key of 3 columns
st_id, sj_id, order
and want to delete a row based on a specific st_id and sj_id and by taking the max(order)
Could you please help?
0
votes
3answers
47 views
Call function when class is deleted/garbage collected
I have a class that opens a sqlite database in its constructor. Is there a way to have it close the database when it is destroyed (whether that be due to the programmer destroying it or being ...
0
votes
1answer
33 views
How do I add a delete button for mySQL in custom WordPress Plugin
I am building a custom WordPress plugin, which generates coupon codes, stores them in the mySQL database, and then displays them in a WordPress admin page.
I would like to be able to add a delete ...
0
votes
1answer
10 views
Mysq process checker
I want to ask, how to make some kind of process check. I mean when for e.g. i want to mysql_query("DELETE FROM some_table WHERE id='1' ");
how to check if it deleted the row, or it just made a ...
0
votes
1answer
36 views
Clearing a binary search tree
I came across this method to clear a binary search tree. The code is given in a textbook. Why must a node temp be created and deleted in the end? Why not delete the subroot instead of making it null?
...
2
votes
3answers
80 views
What means 'destroying' memory by delete operator in C++?
I would like to know what happens to memory that is destroyed by "delete" operator in C++.
Is 'destroying' memory in such way means setting given pieces of memory to 0 or something else?
0
votes
1answer
73 views
Prolog, delete an element in a list at a specified index
I need your help! Can you help me with this: delete an element in a list at a specified index in Prolog.
For example:
delete(List,Index,NewList).
?-L=[1,5,7,4],delete(L,2,L2),write(L2).
...
0
votes
2answers
40 views
SQLite delete one single row
I have a SQLite table defined this way:
CREATE TABLE Points(value INTEGER, player INTEGER, match INTEGER)
In the execution, I may have several identical columns, and I want a call which only ...
0
votes
2answers
80 views
How to delete row in UITableView and update indexPaths without calling reloadData?
[UPDATE]
I've found the problem. I've created a custom UITableViewCell, and am not using the standard methods to trigger deletion. My custom UITableViewCell has a custom indexPath property that I ...
1
vote
0answers
71 views
Grails - deleting uploaded images
I uploading in my app, images and save them in web-app/myCustomFolderImages.
When i want delete some of this images, i having 2 problems.
1.Sometimes when i deleting file immediately after upload, i ...
0
votes
4answers
28 views
how to restore only one file to cloned git repo?
So I have a cloned repo on the prod server. I accidentally removed a file from the prod. server and I thought doing a "git pull" would restore that file, i.e. copy the last version of the repo. Now I ...
-2
votes
0answers
13 views
delete script for parent folders based on date [closed]
I've done some looking but just can't find the exact code. What I have is a series of server backups that are backed up to a remote location. I need a way to have a windows script that runs each ...
1
vote
0answers
35 views
Delete Method using AVAIL List Technique in C#? [closed]
Can anyone help me to find a reference, explanation or code on delete method using the avail list in order to reclaim space in file while deletion?
Thank you.
2
votes
2answers
47 views
Deleting Key from 2D Hash in Perl
My Hash looks like this
%hIDSet = (
'TSASD2' => {
'country' => 'US',
'newid' => 'IMRAN',
'oldid' => 'TSASD4'
...
2
votes
4answers
85 views
How to delete all lines matching a pattern and a line after in Vim?
There's a text
Title of the text
This line contains a word that is matched by the pattern and it should be deleted.
Next line is supposed to be deleted as well.
Loren ipsum dolorem...
This line ...
0
votes
0answers
30 views
Remove all thumbnails generated with easy-thumbnails Django App
I am using easy-thumbnails in my Django 1.5 project to generate thumbnail images.
I have been using several different sizes for thumbnails for testing, but now I would like to clear all thumbnails ...
0
votes
1answer
58 views
TableLayoutPanel: Delete Rows
I have a TableLayoutPanel which is filled with rows at runtime using a txt file (get each row from the text file, and put it in cells contained in new rows)
Code Looks like this
public static string ...
0
votes
0answers
40 views
Deleting and creating a record based on linq query ASP.NET
Hi I am having trouble with my final project at university any help would be appreciated.
I have a table takes in my SQL database for a university and i need to update this each year as students ...
0
votes
0answers
59 views
Binary Tree Search - delete a node without child
I have a binary tree search, and i try to remove it's biggest number in this tree. But it has crash while I delete a node without child. Totally don't know why. Here is my code.Please help me figure ...
1
vote
2answers
39 views
How to safely delete folder contents before build (ant)
Our nightly build loads the code in a folder (ex: C:\build\nib_sw_12)
I want to delete the before contents before the ANT loads the files from source control.
But there are some files which are not ...
0
votes
2answers
38 views
Polymorphic Association - Deleting comments
I am creating an application that allows users to make comments on project postings created. I followed this Railscast to set up polymorphic associations.
Everything works great per tutorial, but I ...
0
votes
0answers
34 views
i am am using the facebook c# api in vb.net to try and delete photos from my albums
i am am using the facebook c# sdk in vb.net to try and delete photos from my albums.
the delete is as follows:-
FB.DeleteTaskAsync("/" & pic.ID)
if the photo was uploaded by my application this ...




