Updating can refer to the modification of data or configuration by an application, process, or service, or can refer to the modification of software by a process.
Questions tagged [updating]
1058 questions
2
votes
2 answers
Access 2007 database is not updating
I'm working on a .Net Desktop app that uses Access database. I'm using the Contacts form and trying to change the Category field, which has multiple choices in a combo box for value. The value I'm trying to set is in the list of choices, but it…

Mariela Nikolova
- 21
- 1
2
votes
1 answer
PL/SQL-updating salary of an employee, the amount of increase in salary was wrong
I need to update the salary of employees from department 40 and 70. All employees from department 40 will have a 10% increase while employees from department 70 will have 15% increase.
I have 1 employee from department 70 who has a salary of 10000…

Katherine
- 573
- 4
- 17
- 43
2
votes
0 answers
How to update an @Embedded field
I'm using Morphia 0.99 and I'm trying to update an embedded field in an entity, but I don't see how.
// User entity
@Entity(value = "users", noClassnameStored = true)
public class User
{
@Id
private String id;
@Embedded
private…

NaBUru38
- 99
- 1
- 7
2
votes
1 answer
How to update in webapi using jquery?
Hi all i am working on webapi now here i need to update data right i am having table (entitymodel)
id | value
1 | previous data
2 | new data
now i need to update the table means iam updating ckeditor data iam some…

Sadda-shutu
- 1,309
- 2
- 18
- 42
2
votes
1 answer
Variable will not update (in Java)
I'm having trouble with a game I'm working on right now; the purpose of this code is to change the location of the JComponent on the window. This is how I want it to play out:
1: Program starts, JFrame created at 640x640 pixels; JComponent is…

Reilly T
- 23
- 3
2
votes
1 answer
Updating each element in collection MongoDB
I am trying to update each element of a collection, one at a time. My pseudocode is:
for e in myColl.find():
# ...calculations involving variables of 'e'
myColl.update({'_id':e['_id']}, { '$set': {'myvar':123}})
where myvar is a new…

zanbri
- 5,958
- 2
- 31
- 41
2
votes
5 answers
VB.Net 3.5 Check if file is in use
I have an update program that is completely independent of my main application. I run the update.exe to update the app.exe. To check to see if the file is in use, I move it to another file and catch an error if it is in use. If no problems occurr I…

ErocM
- 329
- 2
- 6
- 11
2
votes
4 answers
Dynamically updating a table row using AJAX
Normally, I'm a big stickler for jfGit, but I've been looking all over the web and can't get this code to work.
My setup:
index.php - a page containing a table populated by data from a mysql database.
update.php - a php script able to output a…

Freeloader
- 23
- 1
- 1
- 4
1
vote
2 answers
Refresh Game Score TextView using AsyncTask
I am writing a board game in Android where the UI consists of textViews for the scores (CPUScore and PlayerScore). The problem I have is that the UI does not update the score from its initial value when onCreate is called. I have looked at similar…

Buzz
- 516
- 7
- 21
1
vote
1 answer
Updating main form after closing secundary form
Im creating a little patients management software to my wife. The program is fully functional but Im having a problem once I update patient data or exclude any register.
I have a search form to bring all patients (using date period, name...) then I…

Galla
- 61
- 1
- 7
1
vote
2 answers
Can't save updates to values in datamapper model
I have this model
class User
include DataMapper::Resource
include BCrypt
property :id, Serial
property :email, String, :required => true
property :password_hash, Text, :required => false
property :user_name, String, :required => true
…

wuliwong
- 4,238
- 9
- 41
- 69
1
vote
1 answer
updating a UI table view cell with upload status - iOS
Hell everyone :)
My experience with the UITablewView Controller in iOS is unfortunately quite limited. What I need in my application is a UI table view which contains one custom cell for each active upload currently being uploaded to a webserver…

CodingBeagle
- 1,888
- 2
- 24
- 52
1
vote
0 answers
Searching and Updating a Multi-dimensional array
I've searched through all the posts here and can't seem to find the right method to do what I need.
I have a multi-dimensional array of products pulled from a db, via individual orders.
$products = array ();
$i = count ($products);
foreach…

secondman
- 3,233
- 6
- 43
- 66
1
vote
1 answer
C, GTK: window stops updating
I'm developing an application that periodically draws images on a GTK Drawing Area inside a window.
The rendering first works well and the window content gets repainted if I drag another window over the drawing one, but after some random amount of…

lynix
- 145
- 8
1
vote
1 answer
mongodb updating nested array in a document using PHP
document structure example is:
{
"dob": "12-13-2001",
"name": "Kam",
"visits": {
"0": {
"service_date": "12-5-2011",
"payment": "40",
"chk_number": "1234455",
},
"1": {
"service_date":…

pun
- 111
- 1
- 3
- 12