What does the parameter Initial Catalog define inside
Connection String?

Answers were Sorted based on User's Feedback



What does the parameter Initial Catalog define inside Connection String?..

Answer / tiger kumar

The Initial Catalog is used to define the database name
inside the connection string.

Is This Answer Correct ?    37 Yes 2 No

What does the parameter Initial Catalog define inside Connection String?..

Answer / sundherrajan

Define DataBase File that wants to get COnnect with the
connetion string

Is This Answer Correct ?    23 Yes 4 No

What does the parameter Initial Catalog define inside Connection String?..

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

What does the parameter Initial Catalog define inside Connection String?..

Answer / vishalsharma

Server="server_name";DataBase="database_name";security_crede
ntials;

Is This Answer Correct ?    12 Yes 13 No

What does the parameter Initial Catalog define inside Connection String?..

Answer / ashish gupta

server="";Database="";Integared Security=""

Is This Answer Correct ?    4 Yes 8 No

Post New Answer

More C Sharp Interview Questions

what are the differences between a class and structure

0 Answers   Cognizant,


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...

1 Answers  


Are enums static c#?

0 Answers  


Can multiple catch blocks be executed?

1 Answers  


What is the difference between disposing of () and finalize() methods in c#?

0 Answers  


Why do we use overloading in c#?

0 Answers  


How do I declare inout arguments in c#?

0 Answers  


Why we use extension methods in c#?

0 Answers  


What are the different types of comments in c#?

0 Answers  


Explain the difference between a sub and a function?

1 Answers   Wipro,


What happens if a static constructor throws an exception?

0 Answers  


What is constants in c#?

0 Answers  


Categories