I am making my first web application (a one-page web application that shows four tables of sample data from my department in a hospital).
I am trying to make my connection string in my web.config file using this example:
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<connectionStrings>
<clear />
<add name="name"
connectionString="server=localhost;database=myDb;uid=myUser;password=myPass;" />
</connectionStrings>
</configuration>
However, I do not know how to find the needed information (my Oracle database runs on a server, which is located elsewhere). I have found a good walkthrough to Visual Studio, where you can right-click on your connection in server explorer and then see your connection string in the properties section. This is not possible in Visual Studio Code, though. So how do I find this information?
In Oracle SQL Developer I can find the following information: Name, hostname, port, service name. But which of these information should I use?
What is Add name? (is it the 'service name' I can see in SQL Developer?) What is server? (is it the 'hostname' I can see in SQL Developer??) What is database? (Is it Oracle?)