answersLogoWhite

0


Best Answer

A connection string in computing is a string that specifies how to connect to a data source and information about the data source. It is commonly used in database files.

User Avatar

Wiki User

10y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is a connection string used for in computers?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

Which keyword is used in connection string for attaching to a file?

AttachDBFilename


A broadband connection is used for?

A broadband connection is used to connect to the internet using an electronic device, like computers, mobile phones, and tablets.


What is broadband connection?

A broadband connection is used to connect to the internet using an electronic device, like computers, mobile phones, and tablets.


What types of layers are used in connection of two computers?

The seven layers of the OSI model.


What other devices that can be used in networking a computers without using RJ45?

You can wireless connection.


What is an SQL server connecton string?

An SQL server connection string contains information that providers need to know in order to establish a connection to a database. There are many ways to write a connection string because each provider has multiple ways to make a connection.


What is the connection of boolean algebra into computers?

The connection stems from the fact that in Boolean logic binary numbers are used and these are used in computers as well. That reminds of a joke you may have heard. There are only 10 kinds of people: -those who understand binary; -those who don't


What does a RJ11 cable do for a computer?

rj11 cable is usually used for a phone line so for computers this particular cable can be used to connect to a dial up connection or dsl connection


What is an ad-hoc connection?

A wireless sharing connection between computers.


Which two Wi-Fi standards are used to provide a wireless connection between printers and computers?

802.11b and 802.11g


What two Wi-Fi standards are used to provide a wireless connection between printers and computers?

802.11b and 802.11g


How do I create a database login screen on c sharp?

Basically in order to login to a database you need a couple of inputs from user: - Server Name DB Name UserName/password All of these would be used to frame a connection string that can be used to initialise a SQLConnection object and open the DB connection. A standard connection string would be: - string strSQLconnection = "Data Source=dbServer;Initial Catalog=DBNAME;Integrated Security=True;uname=username;password=pwd"; -> In this case string strSQLconnection = "Data Source=" + textbox1.text + ";Initial Catalog=" + textbox2.text + "........... //initialize sqlconnection from the connection string. SqlConnection sqlConnection = new SqlConnection(strSQLconnection); //initialize the query to be fired. SqlCommand sqlCommand = new SqlCommand("select * from table1", sqlConnection); //open sql connection sqlConnection.Open();