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
Javascript updated table field transferred to bean as blank
Using JSF 1.2.
After Javascript function copy() correctly updates h:inputText field's value of a certain row of a session-scoped h:dataTable and returns true, user clicks on a h:commandButton and enters into a session-scoped bean method to read…

mcevadi
- 3
- 3
0
votes
1 answer
Jquery Called Page Update Parent?
I have a page calling another page using :
$("#Go").click(function () {
$("#view").load("test.php");
refreshId = setInterval(function() {
$("#view").load("test.php"); }, 1000);
});
This works fine.
The question I have is can…

JeffVader
- 702
- 2
- 17
- 33
0
votes
2 answers
Updating SQL rows where row matches user log in ID
I have a problem with this line of code - I have spent most of the day trying to get this resolved - can any one help?
Here is the code that is causing the problem form what I can see! The problem is around the $qry...
$qry = "INSERT INTO…

Tom36
- 152
- 1
- 4
- 25
0
votes
1 answer
C++ Finding a line from a text file and updating/writing the line
I have a bank account file that the program should be able to read. This function works as of now with the use of ifstream. But I want the program to read the 6th line of the text file (which has the value 'balance') and then update it as needed…

PewK
- 397
- 3
- 8
- 19
0
votes
2 answers
If the color on the screen equals a certain color, Java
Part of my program needs to see if the color at a certain point on the screen equals a certain color then preform an action. I can not figure out how to constantly check the point on the screen to see if that color changes. Any help would be greatly…

MahoreLee
- 143
- 1
- 3
- 12
0
votes
3 answers
php - issue when update the db
I'm working on updating text to sql.
I am facing problem in my code below not updating the db, but when i change the where pid='$data[pid]' statement to some index like where pid='3', it works.
I'm new in programming. can you explain…

user2413763
- 81
- 6
0
votes
1 answer
Modifying Joomla extensions without worring about updating them
I want to modify a Joomla extension code. I know how to use template overrides, but the extension is not written in MVC pattern and even if it was, I would be going to change the controller code. In fact I'm going to modify a specific method in a…

Mohsenme
- 1,012
- 10
- 20
0
votes
2 answers
App crash while updating database
I'm currently developing an android app with eclipse. I got a problem while updating the database. The problem is the app crash while the updateFlag method is called. The updateFlag method only update one specific column only based on the…

Bobby Chandra
- 89
- 2
- 10
0
votes
2 answers
update record with codeigniter active record
In my controller, I am calling a model function with the following:
$this->sales_model->softdelete_order($this->input->post('ordernumber'));
what I want to do, in my model is
update Customer_Order_Summary set Deleted='1' where CustomerOrderID='123'…

Smudger
- 10,451
- 29
- 104
- 179
0
votes
3 answers
Automatically or easily updating my database
I have available to me a Report that is generated in Microsoft SharePoint, and it holds the quantities for certain items. The reports can be exported as excel documents, but if it is possible i would like to avoid that.
In my Access database I have…

JahKnows
- 2,618
- 3
- 22
- 37
0
votes
1 answer
how to refresh datagrid and update database?
i have some trobles in updating my database. ihave this codes :
Dim cmd As OleDbCommand
Dim sql As String
sql = "UPDATE nmat SET nip = '" & lblNipDosen.Text & "', nim = '" & TxtNIM.Text & "', ntugas = '" & TxtNtugas.Text & "',…

Sam
- 13
- 1
- 1
- 4
0
votes
2 answers
Updating a data base with a single field
I'm currently developing an Android app. The database has 1 column only named content. Here it is the code:
public long insert(String content){
ContentValues contentValues = new ContentValues();
contentValues.put(KEY_CONTENT, content);
…

Bobby Chandra
- 89
- 2
- 10
0
votes
1 answer
How would you create an auto-updating newsfeed without a reload?
How would I go around creating an auto-updating newsfeed? I was going to use NodeJS, but someone told me that wouldn't work when I got into the thousands of users. Right now, I have it so that you can post text to the newsfeed, and it will save…

Beaurocks16
- 341
- 1
- 7
- 16
0
votes
2 answers
java jlist - AbstractListModel - fireContentsChanged does not work properly
I have a simple ListModel, that is filterable and is used in a JList...
It uses the following code...
public class FilteredListModel extends AbstractListModel
{
private List data = null;
private final ArrayList indices = new…

prom85
- 16,896
- 17
- 122
- 242
0
votes
1 answer
Trying to write a simple Joomla plugin
Please help, this is my first plugin I'm writing and I'm completely lost. I'm trying to write and update information in a table in a joomla database using my custom giveBadge() function. The functions receives two different variables, the first…
user2317337