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
#8
(Oct-26-2016, 10:38 PM)Larz60+ Wrote: 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).

The "id" isn't a primary key since it is absent in the new rows...

Of course, here we just answer the questions asked, but it is likely that these stem from not-so-good design.

A very interesting read
Unless noted otherwise, code in my posts should be understood as "coding suggestions", and its use may require more neurones than the two necessary for Ctrl-C/Ctrl-V.
Your one-stop place for all your GIMP needs: gimp-forum.net
Reply


Messages In This Thread
RE: Search the data to update in a database - by Ofnuts - Oct-27-2016, 03:16 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  How to detect abnormal data in big database python vanphuht91 5 1,194 Jun-27-2023, 11:22 PM
Last Post: Skaperen
  Database that can compress a column, or all data, automatically? Calab 3 1,271 May-22-2023, 03:25 AM
Last Post: Calab
  Basic SQL query using Py: Inserting or querying sqlite3 database not returning data marlonbown 3 1,456 Nov-08-2022, 07:16 PM
Last Post: marlonbown
  simple html page with update data korenron 3 2,754 Nov-15-2021, 09:31 AM
Last Post: jamesaarr
  Get last row of SQL database and update Turtle 5 3,281 Oct-14-2021, 07:06 PM
Last Post: Turtle
  I need help parsing through data and creating a database using beautiful soup username369 1 1,746 Sep-22-2021, 08:45 PM
Last Post: Larz60+
  SaltStack: MySQL returner save less data into Database table columns xtc14 2 2,222 Jul-02-2021, 02:19 PM
Last Post: xtc14
Question Python + Google Sheet | Best way to update specific cells in a single Update()? Vokofe 1 2,745 Dec-16-2020, 05:26 AM
Last Post: Vokofe
Photo Update database in tkinter shahulvk 3 3,228 Oct-24-2020, 04:48 PM
Last Post: shahulvk
  Looping to read data in database CEC68 1 1,758 Sep-24-2020, 08:54 PM
Last Post: scidam

Forum Jump:

User Panel Messages

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