Python Forum
Inserting new row into SQLite
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Inserting new row into SQLite
#5
By trial and error this approach works.

Taking this string from Entbuy1.get() and adding ' as the leading and trailing characters.
If this is clumsy or coarse solution then please advise or show me a more elegant way to perform the task.

My real objective with the VendClpBrd ( Vendor Clipboard) is to do the following:
  • Have a fixed data base of say 100 rows for vendors.
  • Have row one as a blank record i.e no vendor.
  • INSERT any new vendors into row two.
  • Drop off (DELETE) the last vendor (row 100).


I then want to be able to load this data into various comboboxes for users to select vendors.

If anyone had done something similar i'd appreciate any help or guidance.


def AddToClpBrd():
    print (' AddToClpBrd')
    sqlite_file = 'mydatabase.sqlite'     # name of the sqlite database file
    table_name1 = 'VendClpBrd'            # name of the table 
    
    id_col   = 'rowid'
    col_01   = 'Vend_01'

    ClpIns = '17'                   # Hard code for test
    CX = StringVar()
    CX = "'" + Entbuy1.get() + "'"  # For Code 4 this works when used with script below
    #CX = Entbuy1.get()             # For Code 1
    #CX= '1234567890'               # For Code 2
    print(CX)
      
      # Connecting to the database file

  
     #  +++++++ CODE4 This code functions without error
    conn = sqlite3.connect('/Users/Kevin/Documents/mydatabase.sqlite')
    c = conn.cursor()
    STRR = "INSERT OR IGNORE INTO {tn} ({idf}, {cn}) VALUES ( "+ str(ClpIns) +"," + CX + " )"
    c.execute(STRR.\
              format(tn=table_name1, idf=id_col, cn=col_01))
   
 

   #  From  Sebastian Raschka
   # c.execute("INSERT OR IGNORE INTO {tn} ({idf}, {cn}) VALUES (123456, 'test')".\
   #     format(tn=table_name, idf=id_column, cn=column_name))
  
    conn.commit()
    conn.close()

    #OpenRecord (Rcrd)
Reply


Messages In This Thread
Inserting new row into SQLite - by KevinBrown - Mar-27-2019, 07:46 PM
RE: Inserting new row into SQLite - by nilamo - Mar-27-2019, 09:50 PM
RE: Inserting new row into SQLite - by KevinBrown - Mar-28-2019, 03:09 AM
RE: Inserting new row into SQLite - by KevinBrown - Mar-28-2019, 09:07 AM
RE: Inserting new row into SQLite - by KevinBrown - Mar-28-2019, 10:19 AM
RE: Inserting new row into SQLite - by nilamo - Mar-28-2019, 07:43 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Inserting values from multiple lists sqlite azulu 1 2,543 May-24-2020, 08:40 AM
Last Post: ibreeden
  Problem with inserting a string in to Sqlite db darktitan 3 4,571 Mar-03-2019, 06:30 PM
Last Post: stranac

Forum Jump:

User Panel Messages

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