You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jun 4, 2024. It is now read-only.
cursor.execute('''insert into esptemp values(%s,%s, %s)''', (UDP_PORT, datetime.now(timezone.utc), float(writestring)) )
cursor.execute('''SELECT * from ESPTEMP''')
However, I want to be able to display the data using plotly Dash which requires, I think, their Falcon software to connect.
But when I run falcon and try and connect to my database I get
Hi
I have created a postgresql database on my windows 10 laptop and I can read and write data from the database via Python.
code snipnet
conn = psycopg2.connect(database="Test", user='postgres', password='xxxxxx', host='127.0.0.1', port= '5432')
conn.autocommit = True
cursor = conn.cursor()
cursor.execute('''insert into esptemp values(%s,%s, %s)''', (UDP_PORT, datetime.now(timezone.utc), float(writestring)) )
cursor.execute('''SELECT * from ESPTEMP''')
However, I want to be able to display the data using plotly Dash which requires, I think, their Falcon software to connect.
But when I run falcon and try and connect to my database I get
Unknown authenticationOk message typeMessage { name: 'authenticationOk', length: 23 }
Help greatly appreciated
Regards
Darren
The text was updated successfully, but these errors were encountered: