0

Having a CSV file, after importing it to the Supabase Database, how can we listen to the changes in the same CSV file?

Is uploading the CSV file in the Storage and then writing a Hook Function to check if the CSV file is updated a solution?

Taha Aslam
  • 21
  • 3

1 Answers1

0

Yes you can import data via CSV via the following option. enter image description here

You can also listen to changes in the table at your client as per their documentation. Flutter Documentation Postgress Changes. Make sure the table you are listening to is in the public schema.

You can write an automation script at your server to sync with CSV and stream, using postgress copy command.SQL Copy

Abuzar Rasool
  • 79
  • 1
  • 9