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
3
votes
2 answers
Android studio gets stuck when updating SDK
It doesn't go past this:
Tried twice. Any ideeas why?

rosu alin
- 5,674
- 11
- 69
- 150
3
votes
4 answers
Simply sqlalchemy filter not working
Select all works like this:
q = session.query(products)
Now I want to add a WHERE filter, so I am trying:
q = session.query(products).filter_by(stock_count=0)
I get an error saying 'nonetype' object has no attribute 'class_manager'.
Not sure what…

Blankman
- 259,732
- 324
- 769
- 1,199
3
votes
0 answers
IOS Development: Background BLE with CBPeripheral periodically updating subscribed characteristic
I'm currently trying to develop a Bluetooth IOS application that can work in background.
I methodically followed the tuts on the IOS developper website, and it works pretty fine; I'm getting stuck whenever I want to update a subscribed…

Olympiloutre
- 2,268
- 3
- 28
- 38
3
votes
1 answer
Remote app update and restart for unattended field-deployed android phones?
We will be deploying hundreds of off-the-shelf android phones to far-flung field locations for unattended operation. They will be running an app we've developed to receive, process, and relay data from nearby Bluetooth sensors to a central server as…

GISmatters
- 431
- 8
- 20
3
votes
1 answer
Update request in CRUD function
I am new to Sails and trying to learn CRUD functions to make my first api, with the help of Ponzi Coder tutorials, How do I create a restful json CRUD api in sails from scratch?
For the Update request,
I tried this piece of code for my application…

Prerna Jain
- 1,240
- 2
- 16
- 34
3
votes
4 answers
Error retrieving parent for item:No resource found that matches the given name 'Theme.AppCompat.Light'. MY R.java is missing
Google has now Android Lollipop, I opened my sdk manager and decided to update couple of packages... It is furstrating me from 2 days.
Can't find theme
I have also tried this: Failed to rename directory
Unsuccessful. I tried to download a new sdk…

JumboJey
- 79
- 2
- 3
- 11
3
votes
1 answer
JavaScript updating a global variable
I am currently not the most experienced in Javascript and I'm trying to learn bit by bit. Anyway... how do I update the balance variable more efficiently?
Currently I believe I am doing this wrong. Also my button does not work on click…

user3274696
- 89
- 1
- 7
3
votes
3 answers
UILabel updating text, but won't remove old text
EDIT: I figured out that i needed to remove subviews, once the view did disappear
[[self.scrollView subviews]makeObjectsPerformSelector:@selector(removeFromSuperview)];
My problem is that I have an UILabel which updates the text correctly, but…

JMIT
- 169
- 2
- 15
3
votes
1 answer
unable to update sqlite3 on mac osx?
i want to install newest sqlite3 on my mac osx. i am trying this from last 6 hours but still not succeed.Here are the steps i have followed.I have tried this site
mkdir ~/src
cd ~/src
curl http://www.sqlite.org/sqlite-3.6.18.tar.gz | tar zx
cd…

Rahul Vyas
- 28,260
- 49
- 182
- 256
3
votes
1 answer
Eclipse ADT Version requires Update 22.6.2 or above but i already Updated it
I'm having problem with the ADT update my current version is 22.0.4 it did not renew my current version. i already downloaded the the new Version from the SDK manager Update 22.6.2. But when i open my Eclipse my current version is still the 22.0.4.…

DreamBigAlvin
- 884
- 3
- 13
- 35
3
votes
1 answer
Periodically Updating the Text Displayed by an HTML Element and stop when the content array is over
I wish to create a speed reading software of my own. For that, I need the text to continuously change and stop when the passage gets over. I have tried something where the contents are included in any array and the text continuously changes…

user3264821
- 175
- 2
- 18
3
votes
2 answers
When we should update app with crucial data?
I need to update local db on device with content stored in the external db via internet. This app will be used for making the orders, so the prizes of items must be actual for all the time. At the moment, I have smth like starting screen when we see…

MyWay
- 1,011
- 2
- 14
- 35
3
votes
2 answers
C# - Best way to optimize data updates
just a simple question on data updating.
Suppose I have a TextBox called txtBox1 and I want to update the value of a string variable called foo.
Which gives the best performance and best to do?
// The lengthier code but will check if the value is…

CudoX
- 985
- 2
- 19
- 31
3
votes
2 answers
WPF Datagrid Update grouping after item edit/update
I am relatively new to WPF was wondering if anyone could help me out.
I have a collectionview that holds an observablecollection list that stores all my items. My datagrid's item source is the collection view. I have simple grouping in datagrid…

Ben Cheng
- 101
- 3
- 9
3
votes
4 answers
Edit/Modify & Delete of record from a Random Access File in C
The program should modify or delete a specific record according to employee id, in modifying part it writes the modified record as a new one at the end of the file, the deleting part works only once and then give me a segmentation…

fatimah
- 119
- 2
- 4
- 13