What does the parameter Initial Catalog define inside
Connection String?
Answers were Sorted based on User's Feedback
The Initial Catalog is used to define the database name
inside the connection string.
Is This Answer Correct ? | 37 Yes | 2 No |
Answer / sundherrajan
Define DataBase File that wants to get COnnect with the
connetion string
Is This Answer Correct ? | 23 Yes | 4 No |
Answer / santhi
IN connection string for defining the database name we use the Initial Catalog As below:
<add name="sqldb"
connectionString="Data Source=sp-pc-45;Initial Catalog=TMS;User ID=santrhu;Password=123456" providerName="System.Data.SqlClient"/>
Is This Answer Correct ? | 2 Yes | 0 No |
Answer / vishalsharma
Server="server_name";DataBase="database_name";security_crede
ntials;
Is This Answer Correct ? | 12 Yes | 13 No |
Answer / ashish gupta
server="";Database="";Integared Security=""
Is This Answer Correct ? | 4 Yes | 8 No |
what are the differences between a class and structure
FOR EXAMPLE : CLASS Dotnet { } creating object: Dotnet dn=new Dotnet(); NOW THE QUESTION IS WHICH IS CALLED AS OBJECT ?EITHER dn OR new Dotnet() and CAN YOU PROVE YOUR ANSWER?????PLEASE REPLY...
Are enums static c#?
Can multiple catch blocks be executed?
What is the difference between disposing of () and finalize() methods in c#?
Why do we use overloading in c#?
How do I declare inout arguments in c#?
Why we use extension methods in c#?
What are the different types of comments in c#?
Explain the difference between a sub and a function?
What happens if a static constructor throws an exception?
What is constants in c#?