Python Forum
Search the data to update in a database
Thread Rating:
  • 1 Vote(s) - 4 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Search the data to update in a database
#5
Hi again,

I asked if this was a one shot deal. The reason is that if so, you could make the changes manually with sqliteman.
That being said, are you getting any errors from your code, if so please post.

I'm not sure about sqlite3, but other databases Oracle for one (at least this used to be so) didn't allow changing the id
of a row in place, if that row was indexed by the field you were trying to changed.
You had to do one of two things:
delete the row and re-insert
or
remove the index, make the change, and reload the index.

obviously on a large database the first option is the one you would use.
I'd try it this way:

1. read the row and save the results.
2. delete the row.
3. insert the saved row (with the changes).
Reply


Messages In This Thread
RE: Search the data to update in a database - by Larz60+ - Oct-26-2016, 10:38 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Don't update/upload null data Philskidvd 0 630 Mar-20-2025, 10:52 AM
Last Post: Philskidvd
  Database search in python for MongoDB Abdul515001 0 455 Dec-14-2024, 12:31 PM
Last Post: Abdul515001
  Help Python Bot to search a database stream3366 1 606 Nov-04-2024, 11:00 PM
Last Post: stream3366
  Python script to extract data from API to database melpys 0 870 Aug-12-2024, 05:53 PM
Last Post: melpys
  How to detect abnormal data in big database python vanphuht91 5 2,358 Jun-27-2023, 11:22 PM
Last Post: Skaperen
  Database that can compress a column, or all data, automatically? Calab 3 2,131 May-22-2023, 03:25 AM
Last Post: Calab
  Basic SQL query using Py: Inserting or querying sqlite3 database not returning data marlonbown 3 3,145 Nov-08-2022, 07:16 PM
Last Post: marlonbown
  simple html page with update data korenron 3 4,731 Nov-15-2021, 09:31 AM
Last Post: jamesaarr
  Get last row of SQL database and update Turtle 5 5,794 Oct-14-2021, 07:06 PM
Last Post: Turtle
  I need help parsing through data and creating a database using beautiful soup username369 1 2,337 Sep-22-2021, 08:45 PM
Last Post: Larz60+

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020