pythonを使用してのPostgreSQLから[、(100)]なしで100のようなデータを選択するには?

Lovindu Lochana:

私は、最初の行のデータを更新する必要があり、1つだけの行を有するテーブルを有しています。0貯蓄: - - :2000現金を- :私は総資産のように、起動時にデータをプレビューする必要が2000年しかし、以下に示すように、プレビューします。ここでは、画像の説明を入力します。だから、私は、このためのソリューションを提供してください。

from tkinter import *
import psycopg2

try:
    connection = psycopg2.connect(user="postgres",
                              password="postgres",
                              host="localhost",
                              port="5432",
                              database="money_db")
    cursor = connection.cursor()

    query_cash = "select cash from main where index = 1;"
    query_savings = "select savings from main where index = 1;"

    cursor.execute(query_cash)
    cash = cursor.fetchall()


    cursor.execute(query_savings)
    savings = cursor.fetchall()


    t_w = (cash + savings)

    cursor.execute("commit;")
    if (connection):
        cursor.close()
        connection.close()
        print("PostgreSQL connection is closed")
except (Exception, psycopg2.Error) as error:
    print("Error while fetching data from PostgreSQL", error)

root = Tk()
root.geometry("900x500")
root.resizable(width=False, height=False)

t_w_lbl = Label(text="Total Wealth = " + str(t_w), font=("Calibry", 14), bg="white")
t_w_lbl.place(rely=0.04, relx=0.1)

cash_lbl = Label(text="Cash = " + str(cash), font=("Calibry", 14), bg="white")
cash_lbl.place(rely=0.04, relx=0.45)

photo = PhotoImage(file = "exchange.png")
exchange_btn = Button(image = photo, command = lambda: exchange())
exchange_btn.place(relx = 0.64, rely = 0.03, height = 35, width = 50)

savings_lbl = Label(text="Savings = " + str(savings), font=("Calibry", 14), bg="white")
savings_lbl.place(rely=0.04, relx=0.8)`
blhsing:

あなたは使用する必要があるfetchone代わりに、方法をして(追加カンマを注意してください)返すタプルを解凍します。

変化する:

cash = cursor.fetchall()
...
savings = cursor.fetchall()

に:

cash, = cursor.fetchone()
...
savings, = cursor.fetchone()

おすすめ

転載: http://10.200.1.11:23101/article/api/json?id=408840&siteId=1