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
-1
votes
3 answers

Updating a JSON object using JQuery error?

I am trying to update a JSON array of data that is being stored in localStorage but it keeps crashing for some reason and I dont know why. Below is the code: this.setToken = function(newToken) { var settingsList =…
user723858
  • 1,017
  • 3
  • 23
  • 45
-1
votes
2 answers

Update existing image with new on database in php

As per my last question I hv successfully created a database 'test' and a table 'list' and easily updating the info from webpage to database..but now I stuck on 'image' ..I have different images for different id in db..so i hv created an 'image'…
Swati Kanojia
  • 11
  • 1
  • 2
  • 7
-1
votes
2 answers

Cannot update MySQL from php

I cannot for the life of me get my php to update my database. I've gotten it to insert but not update. Been going at this for over 2 hours. I just need a pair of fresh eyes! If someone can figure this out.. it would be a HUGE help. I'm probably…
Chris_Bogausch
  • 72
  • 1
  • 11
-1
votes
2 answers

update in php and sql

i have this function function update_job($title, $type, $salary, $country, $city, $state, $category,$date, $description, $responsabilities, $requirements, $id_job ) { $HOST_DB…
lamloumi
  • 77
  • 6
-2
votes
2 answers

Updating MySql counter when users log in

I have a website where users can log in. The client wants there to be a way to record the number of times any particular user logs in. I have a "Counter" row in the table. How do I program the app (built in C# ASP.NET) to update the counter when…
hammer.pr
  • 1
  • 1
  • 4
-2
votes
1 answer

failed to edited saying successful with any error

successfully updated but with an error
Warning: Undefined variable $topic in C:\xampp\htdocs\mintech\templates\editcat.php on line 13

Warning: Attempt to read property Warning: Undefined array key…
-2
votes
1 answer

VB.NET / Access DB - Column created at runtime is not Updating

Thanks everyone for thumbing down my question and not helping me out. This website is amazing. My program creates columns at runtime with the following code: Cmd = New OleDb.OleDbCommand("ALTER TABLE [Parent] ADD [" & ColumnDate & "] int",…
Saif
  • 1
  • 2
-2
votes
2 answers

updating a database more then once php

I have a total amount. when i sell am item i want to add that amount to my total. e.g i have 100.00, i sell a snake for 100.00 so my total should be 200.00. I have it working so it adds the 100.00 but if i want to sell two snakes it will stay at…
-2
votes
2 answers

Is It Possible to update only a single record(when there are multiple records) in a json file using python?

Want to update json file partially. Want to update different values different records. Example: [ { "Id": "default", "AccountId":1, }, { "Id": "default", "AccountId":2, } ] Based on some inputs want to update only AccountId in the…
-2
votes
2 answers

Update two records in laravel

I am new to laravel .. I am in need to update the position field in the categories table for two records each time i.e when a user clicks an up arrow in the interface the action should be to decrease this record -1 and to increase the previous…
Isma'el
  • 23
  • 6
-2
votes
2 answers

How to create a constantly updating label in Python

I have a Raspberry pi and using Python I've wrote a GUI to control a fan using PWM and to work out the RPM from the fans pulsed output. The GUI has a label at the top, buttons to select different duty cycles, an LED logo indicator to display which…
blast_uk
  • 125
  • 1
  • 3
  • 12
-2
votes
1 answer

Updating a a cell's data through means of a Userform

So I have 2 sets of data: 1) amount spent 2) card number. in a1 and b1 I want to make a userform that has 2 fields that will do the following: field number 1: user enters card number and the system will look for the corresponding card number in…
-2
votes
1 answer

Can I plug my charger in while updating ubuntu?

I am updating to Ubuntu 13.10 today and my computer is running out of charge. Can I plug my charger in while it is updating? Will it mess up the update?
user2884344
  • 195
  • 1
  • 1
  • 9
-3
votes
1 answer

Why I can't keep the hash updated in ruby?

I need to update this hash with as many items as the user wants. And I have a problem with updating it. It only shows the last input from user. For example in i = 2, the hash will only show the second key and value added, and I want both. Or if i =…
user8795980
-3
votes
4 answers

Why can't I Update mysql table?

My sql table is not updating. I have looked through tons of documentation and I do not see why it is not working. if (!empty($_POST['services'])){ $username = mysql_real_escape_string($_POST['username']); $service =…
1 2 3
70
71