I have a command to drop postgresql database:
sudo -u myuser psql -c "drop database my_databse"
How I could execute this sentence from an aspnet website(c#)? Is it possible to execute without introducing a password?
This app is running in another server: I have a windows server running aspnet website. I have an ubuntu server running postgresql database.