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
0
votes
1 answer
Update a component that is inside a p:tabView from a p:dataTable
I have a problem referencing a component inside an ajax update so it can get updated.
Here`s the scenario.
I have a p:tabView that has a dynamic creation of tabs.
Inside that tabView I have a p:panel and a p:dataTable 1.
In the panel I have a text…

de.la.ru
- 2,994
- 1
- 27
- 32
0
votes
1 answer
Update in couchbase
I need some help in update using couchbase. I have a task in my page. If the user clicks the like then the likes count should be updated in my couchbase bucket. I have tried my own update handler code but that has some time latency. I have included…

Xavier
- 1,672
- 5
- 27
- 46
0
votes
1 answer
Kohana 3.1 ORM save()
Is there a syntactical reason that the following would not execute?
$final_scores = ORM::factory('fscores');
$final_scores->userid = $userid;
$final_scores->es1 = $self_awr;
$final_scores->es2 = $self_mgt;
$final_scores->es3 =…

tom p
- 90
- 1
- 5
0
votes
1 answer
Primefaces DataTable fires update THREE times
In the code shown below the button with update="testTable" fires Bean.getSensors call three times, but the button with update="@form" fires only one. Why?

ILYA
- 495
- 6
- 18
0
votes
1 answer
How to database.update the date value
I have a date value in this format: yyyy-MM-dd kk:mm:ss
So from this line data = params.getString("data"); i get the date I have set before in another activity.
So with a button click I need to add + 10 minutes to the date value.
I do know its…

baTimá
- 554
- 1
- 10
- 28
0
votes
1 answer
Downloading Mac OS 10.8 Core Library
When I use Xcode 4.5.1 on my iMac it always starts downloading Mac OS 10.8 Core Library.
If I use my MacBook Pro with same Xcode 4.5.1 it does not download anything.
Xcode in my iMac is updated several times during the last years but my MacBook Pro…

Lars -
- 501
- 1
- 10
- 27
0
votes
1 answer
How to update Android application's local data sources?
I have an application which pulls its data from a local XML file. However, the data changes overtime and I am looking for a way to update it without updating the whole application.
My main goal is to create an update method which would connect to…

PovilasID
- 883
- 10
- 34
0
votes
4 answers
Updating a record in db makes the record invalid?
So, this is driving me crazy and I find myself unable to answer the question neither by myself nor by reading other questions and answers.
When I try to update a record in my db which was created through the webapp, I am not able to alter the values…

neshtea
- 68
- 1
- 8
0
votes
4 answers
mysqli_error: updating tables (Procedural style)
I am using PHP to try and update information I have in a mysqli table. I have decided to try and use mysqli rather than mysql. Unfortunately I cant seem to find my answer anywhere because im also trying to complete it Procedural style, as I have no…

tony09uk
- 2,841
- 9
- 45
- 71
0
votes
0 answers
ProgressBar Overlapping at runtime
Hi i am new to android and i recently changed my theme to Holo ..but the progressbar seems to overlap ..i.e a progress bar comes and stops ontop of which another continues to update the progress.. i even set the secondaryprogress to 0 also..but din…

user1340801
- 423
- 3
- 10
- 21
0
votes
1 answer
INSTEAD OF UPDATE,DELETE,INSERT : determine each command
I need determine each of this this 3 commands in trigger [UPDATE,DELETE,INSERT].For last 2 I do next:
IF EXISTS (SELECT * FROM inserted)
BEGIN
END
ELSE IF EXISTS (SELECT * FROM deleted)
BEGIN
END
How can I get…

Anton Putov
- 1,951
- 8
- 34
- 62
0
votes
2 answers
Cannot find component with identifier outside the datatable primefaces
I have a problem with the update attribute, I want to update a markup that is outside the datatable but always I have an error
here is my xhtml page :

begiPass
- 2,124
- 6
- 36
- 57
0
votes
2 answers
DB2 Stored Procedure using a Cursor
DB2 V9 Z/Os
CREATE PROCEDURE SERDB.I21MMSNOUPD ()
RESULT SETS 1
LANGUAGE SQL
FENCED
COLLID SER
WLM ENVIRONMENT DDSNSPENV
RUN OPTIONS 'NOTEST(NONE,*,*,*)'
P1: BEGIN
--Declare variables
DECLARE CONSUMER INTEGER;
DECLARE NEW_MMS_NO …

John Milton
- 35
- 1
- 3
- 6
0
votes
1 answer
Why is UILabel not updating?
I have created a view that shows lost connection messages to users which pops over the current view. I want to update the view periodically based on connection status changes.
I can properly get the view and change the text of a label (verified…

nbonwit
- 305
- 4
- 12
0
votes
2 answers
Updating a game x times per second in Java
I'm a bit new to game programming and I've decided to do a little experiment in Java. I'm using the Swing/AWT api to implement a game by drawing on a JPanel. However, I'm unsure as to how to implement "passing time" in the game. Does anyone have…

Kyle
- 3
- 4