Questions tagged [updating]

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.

1058 questions
0
votes
1 answer

How to display static page when updating website (ASP.NET 4.0)

When I update my website (I copy files via ftp) website doesn't work, so I want for that time display static page. What I do is I change the priority of default pages in IIS (7.5) and before coping new website files I past the first priority file,…
0
votes
1 answer

any way other than AsyncTask?

When i start an activity, i will perform this action webservice.updateallCatNews(); This function is retrieve data from online database to local database. The finish time is not constant and depend on internet speed. I want to know when the action…
Alan Lai
  • 1,094
  • 7
  • 18
  • 41
0
votes
1 answer

Update JTable through file

Alright so I'm reading some scores off of a text file and when the user is done playing the game, it asks you if you want to save the score or not, I only have one problem with this. It reads and writes fine to and front from the text file, it's…
Josh M
  • 11,611
  • 7
  • 39
  • 49
0
votes
1 answer

updating data of a distributed windows application

I'm wondering, is there a way to update databases of a windows application that is distributed on several computers all at the same time? is it done by using sql server? because I'm developing an examination system that will be distributed on…
0
votes
1 answer

How to prevent Javascript updating entire control, and refreshing content?

I have this code: function addFormControls() { var e = document.getElementById("ProductsList"); var prodid = e.options[e.selectedIndex].value; var prodvalue = e.options[e.selectedIndex].text; if (num == 0) { …
Callum Linington
  • 14,213
  • 12
  • 75
  • 154
-1
votes
1 answer

Hi, I'm creating a music player I have this issue

It says in logcat, NotificationService system_server E Package enqueue rate is 5.001587. Shedding 0|wills.music|1|null|10477. package=wills.music could this also cause to crash when playing music or random, it crashes…
-1
votes
1 answer

Mongodb Updating Nested Arrays

I am trying to update the ordered quantity of the first article of the first order. Insert and update instructions: db.client.insertOne({ "noClient":1, "nomClient":"John Doe", "noTéléphone":"1234567890", "commandes":[ { …
Chérif
  • 9
  • 4
-1
votes
2 answers

How to update elements in a dictionary in Python?

I have a list of dictionary in which there are other lists of object {'Kitchen_Activity': [date= 2009-10-16, start time= 08:45:38, end time= 08:58:52, duration= 0 days 00:13:14 ]} {'Chores': [date= 2009-10-16, start time= 08:59:02, end time=…
-1
votes
1 answer

I don't want to update the value in into database but its getting updated in dot NETCore

I dont want to update value booking.Price in database (Postgrsql) but it is getting updated.I have following code ......... public async Task> Handle(UpdateBookingCommand request, CancellationToken…
Tika Ram
  • 1
  • 1
-1
votes
1 answer

JS How to append to an array with multiple dictionaries with the same keys and different values w/o dictionary being overwritten by latest dictionary?

Am making a working memory game, Dual N' Back on JS - the premise is a function which generates a dictionary of cube attributes, appends these cube attributes to a list of previous cubes in order that the player ascertains if the latest cube matches…
-1
votes
1 answer

Mutating the user object,that is stored in the database in next auth after registration

I have a nextjs application which uses next auth for authentication,I used a database strategy, After a user login is there still a way to update a user's data?
-1
votes
2 answers

Comparing and updating nested dictionaries python

I tried finding many places , but could not find same one, please help in this python code. I have three nested multi level dictionaries, two main (A and B) and one small…
Saman
  • 33
  • 1
  • 7
-1
votes
1 answer

update table with SQL function

I would like to update data in a table (for sqlserver and oralce version). I created a stored procedure as below, but i would like to convert it to SQL function, is it possible to update data within SQL function please? CREATE PROCEDURE updatetable…
satcha
  • 129
  • 1
  • 13
-1
votes
1 answer

Why is my program only updating 1 of my 3 variables in main()?

So I wanted to revise part of my program. This involved me creating another accumulator in the buyCoffee function. The program works flawlessly, except only 1 of my 3 main function variables being passed by reference is being updated. If you run the…
-1
votes
2 answers

How can I update a specific value in this array? (php)

I have the following array, $cart which is structured like so: Array ( [0] => Array ( [sku] => TEST1 [size] => s [qty] => 1 ) ) how can I update the qty to 2 directly using php and not using…
Dino
  • 1,445
  • 4
  • 24
  • 43