Can we access database without SQL Server Management Studio in c# -


i created database name="records" of sql server management studio (ssms). question if uninstall ssms can still access database c# program? if yes, then process connectivity still same given below?

sqlconnection cnn ;  string connetionstring = "data source=servername;initial catalog=databasename;user id=username;password=password";  cnn = new sqlconnection(connetionstring); 

management studio gui client interacting database. separate actual database.

in other words: don't need management studio programmatically access ms sql database.


Comments

Popular posts from this blog

user interface - how to replace an ongoing process of image capture from another process call over the same ImageLabel in python's GUI TKinter -

javascript - Using jquery append to add option values into a select element not working -

javascript - Restarting Supervisor and effect on FlaskSocketIO -