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
2
votes
1 answer

Updating ListView causes NullPointerException

I am trying to update a ListView, and that is causing java.lang.NullPointerException when list.setItems(newObList) is excuted, tried changing the the ObservableList reference to a new updated list, and that did nothing. Clearing the list first, then…
BaraSec
  • 23
  • 1
  • 7
2
votes
2 answers

Solr's schema change without loosing data and without using dynamic fields

I want to do this all: I want to add more fields into same Solr's schema for my new document's index. I don't want to loose my old indexes stored in the same Solr Shards. I don't know solution to this respecting following constraints: I don't…
S Jayesh
  • 191
  • 1
  • 4
  • 19
2
votes
2 answers

Updating multiple sub-documents with Mongoose and Node

I have a Model wich contains an array of sub-documents. This is a Company: { "_id" : ObjectId(":58be7c236dcb5f2feff91ac0"), "name" : "sky srl", "contacts" : [ { "_id" : ObjectId("58be7c236dcb5f2feff91ac2"), "name": { type:…
Don Diego
  • 1,309
  • 3
  • 23
  • 46
2
votes
1 answer

Changing NSUserDefaults class properties after save (Swift)

Say I have a custom object defined as such: class Person { firstName:String, lastName:String, age:Int } After releasing an app version, say I wanted to add a gender:String property. How would I do this even though the current class does not…
Matt Butler
  • 476
  • 6
  • 21
2
votes
1 answer

Run some code when the app updates in UWP

I'm having trouble when updating my app while handling every version of it. If I could run some code when the app finishes the update process, it'll be great. Is there anyway to do that? maybe with a background task? thanks a lot.
Junpei Kun
  • 653
  • 8
  • 11
2
votes
1 answer

Updating UILabels Off-Screen Causing Them To "Snap" Back

Background Info I am building a tiny stopwatch app. It consists of a main view with a label displaying the time and two buttons: start & stop. The start button activates NSTimers which then call methods that calculate the time passed and then update…
LinusGeffarth
  • 27,197
  • 29
  • 120
  • 174
2
votes
1 answer

atomic way of deploying website updates?

When uploading changed files to a live webserver, how do I enforce at any given moment, my entire file set is either in the old state, or new, but never something in between? With 'in between' I mean some files old and some new, or some particular…
RocketNuts
  • 9,958
  • 11
  • 47
  • 88
2
votes
2 answers

Is there any VB.Net event who does the same of VBA "AfterUpdate"?

I need to do something after a TextBox has changed. If I use the TextChanged event the code run on every char inserted or deleted. Googling I found a suggest here using a String variable to store value of TextBox and using Enter and Leave…
genespos
  • 3,211
  • 6
  • 38
  • 70
2
votes
0 answers

Wordpress saving customization when updating plugin

I've made some changes to the contact form 7 plugin for wordpress in the scripts.js file. They are regarding $.fn.wpcf7InitForm -> beforeSubmit $.fn.wpcf7AjaxLoader -> var loader $.fn.wpcf7NotValidTip with focus coding What is the best practice for…
axelra82
  • 517
  • 8
  • 23
2
votes
1 answer

Updating table in as400 using table in excel with vba

I want to update table in as400 using table in excel worksheet like this : Table1 [as400] REFNO QTY 1 10 2 12 3 20 Table2 [excel worksheet] REFNO QTY 1 13 2 15 3 22 Qty in Table1 updated from Table2…
Yudi
  • 31
  • 3
2
votes
2 answers

How can I update data in iPhone app

I create an app, with data store in plist. Now what are the ways I can update the data? Maybe if I create a webpage and retrieve my data from it instead of storing in plist? Or is there a way I can update my data when I plug into iTunes? Or any…
Stefan
  • 21
  • 1
  • 2
2
votes
1 answer

Is query string approach reliable?

I am looking for some effective ways to bypass the cache whenever necessary. In the process of searching for that I have found this link From the referenced post I found that the query string approach may not work when the squid like proxies are…
srk
  • 4,857
  • 12
  • 65
  • 109
2
votes
1 answer

Cassandra update and sort on same column

I'm looking for some inputs around cassandra data modelling for a timeline kind of feature. To store data for the timeline, I'm planning to use timeuuid in cassandra and make it as a clustering key. This will help in sorting the data. But the same…
tech0123
  • 73
  • 4
2
votes
0 answers

Python shows record's old value after restart

I have an script to show database records using MySQLdb and cherrypy as table. My problem is when I update values from outside of the script it updates the old values and I need to restart it to show new values. my DB class in mod/db.py: import…
Ali
  • 21
  • 2
2
votes
3 answers

Ignoring Unique Validation on Update Fucntion Laravel 5

I have this customer model which when you create has a unqiue phone_num . It works fine in create but in my update function, which is a form with auto-populated values based from the id. If the user only updated the address as expected the unique…
jackhammer013
  • 2,295
  • 11
  • 45
  • 95