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
-1
votes
1 answer
Updating SQLite3 database in an offline android application later
I am creating an offline android application with bus routes. The database will be updated frequently and the user should only download and import the database file only. How is this possible. My database file is stored in assets folder.
-1
votes
1 answer
Updating HTML links when moving files
I am trying to change the directory structure of a website.
Is there a way to update the relative links in individual html pages when I change the directory structure?
Dreamweaver hangs, because of hundreds of HTML files and nested links.
Linktek is…

Noor M
- 113
- 2
- 5
-1
votes
3 answers
Swift: how to update boolean value parse
i dont have that much experience so please be friendly while explaining
i can't update my boolean value through swift.
let parseQuery = PFQuery(className: "request")
parseQuery.findObjectsInBackgroundWithBlock { (objects, error) ->…

Arash Allahmorad
- 37
- 5
-1
votes
2 answers
SQL syntax error generated by phpMyAdmin when updating field
I need to change some domain name into a table containing e-mail addresses (primary key).
I tried to extract (with a select) the fields that I need to update:
SELECT `Email`, CONCAT(
SUBSTRING_INDEX(`Email`, '@olddomain.', 1),
…

genespos
- 3,211
- 6
- 38
- 70
-1
votes
1 answer
Changing android package directory structure
lets say i have a published app with package name com.test.app. I want to replace it with an updated app with the package name com.test.app.v3. In android studio, how to I change the updated apps package structure so that all the java code currently…

Alkline
- 13
- 1
-1
votes
1 answer
Php & Mysql Image updating and deleting
I am creating a simple employee management system for practicing php & Mysql. Admin can add, edit & delete all the staffs, Admin can also upload image for every employees
I know how to upload images but, how do i update uploaded images, Like for…

Karthik Desmond
- 1
- 1
-1
votes
2 answers
Why is my ProgressBar not updating in a for() loop?
I have a JProgressBar progressBar which should update in a for() loop. Actually I already looked at this question: Progress bar not updating during a loop and I tried it with a new Thread, but I don't know why it still doesn't update.
What I tried:
…

Freakey
- 85
- 1
- 3
- 15
-1
votes
1 answer
Going through elements in treeset and update the sorting in Java
I have three set of three sets and I want to do this algorithmically:
For the first treeset in treesets do till all done:
dosomething(treeset)
if done(treeset) {
remove treeset from treesets
sort treesets
// now the next treeset to…

Nick
- 367
- 4
- 6
- 13
-1
votes
1 answer
select to update mysql
Select runs. I am trying to change the update but does not work. Who knows help me?
select
concat(
'Вы можете приобрести "', pd.name, '" с гарантией от производителя',
' "', max(case when ad.attribute_id=2 then ad.name end), '" ',
' "', max(case…

Vadim Simonov
- 11
- 1
-1
votes
1 answer
How to update a table in Oracle using a join on another table?
I have an update query where I am trying to update a field but for more than one record, I am trying a join but it doesn't work. Below I get multiple values that come back from the select statement but I think my syntax is incorrect below.
…

niceguy
- 99
- 1
- 11
-1
votes
1 answer
from ax2009 to ax2012, RAssetTable, Lifetime
all! the problem is an absent of Lifetime field in RAssetStandards table. what is should to use instead this field in cases, for example, of comparing like that: rAssetStandards.Lifetime != 0.
thanks for attention!

user3068672
- 9
- 1
-1
votes
2 answers
Excel VBA Workbook Update
I currently have a workbook with a macro to update a range from an identical range on a master sheet. Right now, I simply use a macro to open the master workbook, copy the range from it and paste the values in the same range in the other workbook.…

Brumder
- 212
- 3
- 10
-1
votes
4 answers
updating text files in C(is it possible?)
Do any of you guys know if it's possible to update a text file(e.g something.txt) in C?
I was expecting to find a function with similar syntax as update_txt(something.txt), but I haven't found anything while browsing the internet for the last 2…

Henrik
- 405
- 1
- 8
- 19
-1
votes
1 answer
Updating Image file in database using MS Access
Here is my code
Dim Cmd As New OleDbCommand
Dim strsql As String
Try
Dim fsreader As New FileStream(OpenFile.FileName, FileMode.Open, FileAccess.Read)
Dim breader As New BinaryReader(fsreader)
Dim…

Aouie
- 119
- 2
- 8
- 17
-1
votes
1 answer
How to update a row depending on a condition
I try to update a row in my database. i receive no error but the update does not happend
$sql = "UPDATE calendar_events
SET event_title='".$_POST["naam"]."'
WHERE id ='($event_id)'";
problem is by variable $event_id. If i place a…

chehr
- 19
- 4