answersLogoWhite

0

What is an odbc connection?

Updated: 11/8/2022
User Avatar

Wiki User

14y ago

Best Answer

ODBC stands for Open Data Base Connectivity. It is a connection that is created to define a connection between a computer and a database stored on another system. The ODBC connection contains information needed to allow a computer user to access the information stored in a database that is not local to that computer. You need to define the type of the database application - like Microsoft SQL or Oracle or FoxPro or mySQL. Once you have defined the type of database you need to select or supply the appropriate driver for a connection (Windows already contains many of these) and then supply the name of the database file and the credentials needed to access the database.
Once the ODBC connection is created, you can tell specific programs to use that ODBC connection to access information in that database.

User Avatar

Wiki User

14y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is an odbc connection?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

How do you do ODBC connection in Linux OS?

Employ the ODBC code or module written for whatever language you're writing in. Or, alternatively, write your own ODBC code.


How do you connect to mysql using vb6?

Install the MyODBC database connector.Set up an new ODBC connection to your mysql database in Windows. (This will vary based on your version of Windows)You can use the ADODB extension in VB to connect to your ODBC connection.


Maximum client for odbc connection?

Maximum client is the maximum number of requests that can be served by webserver at a time.


Is it possible to access databases through C-CPP and if so how?

Most database vendors offer an API for this purpose. The usage will vary by vendor, but generally you open a connection, query (or runcommand), check or step through results, close connection. In the MS Windows environment, you can also use ODBC (Open Database Connectivity), which is an API that abstracts (no, its not C++ classes) the database, its tables, and its query language. You still have to install a vendor specific ODBC driver, and a vendor specific database client, so you still need to consult the vendor documentation. The procedure is similar to the non ODBC solution - you open the connection, query it, step through the results cursor, and close the connection.


Does Microsoft exchange server support ODBC connection with anything other than oracle and SQL?

yes because odbc stands for open data base connectivity and it support a lot of data bases. like mysql, ms-access, oracle, sql server etc.


What layer of the osi model is odbc and sql?

ODBC and SQL operate at Session Layer.


What is ODBC in tally?

In tally ODBC is used to connect to other programs and exchange data dynamically


What drivers are needed to setup a database with ODBC?

Alongside dedicated ODBC drivers, a JDCB driver is usually required. This enables a bridge to the ODBC driver, enabling the database to connect to its target.


Which types of JDBC drivers allows your java programs to communicate with the ODBC driver of your dbms?

JDBC - ODBC bridge


How do I create a form which will then upload to a database that I can access in Microsoft Access?

Have your form's input insert into a database (SQL, Oracle, etc) then access that database through Access's ODBC connection.


How do you connect odbc to php?

Syntax: odbc_connect(string datasource, string username, string password); <?php $host = "localhost"; // The host name varies $user = "root"; // Username also varies in db $pwd = ""; // Password varies in db $connect = odbc_connect($host,$user,$pwd); if(!$connect) { die("Could not establish connection to odbc database"); } ?>


What is ODBC in computing?

ODBS in computer stands for Open database connectivity. Whenever we are working on a project let it be java or php the to store the data in our project we need a database. For this this we need to create a database connection that is ODBC.