Can I create a SQL Database in Visual Studio Code for OS X?

I just downloaded Visual Studio Code (for OS X) and I wanted to try building a simple REST API server to test all the possibilities. I can't seem to find how to create a SQL database.

Do I need to create it in another application? If so, how?

+3


source to share


1 answer


Visual Studio Code is not a full featured IDE like Visual Studio. It does not support tasks such as creating databases or viewing them from the application. If you want to create a database, refer to the docs of the database vendor for your target platform.



When it comes to REST API server, Visual Studio Code can be a great help - especially if you're using ASP.Net 5 or node.

+3


source







All Articles