Collections:
What Is ODBC (Open Database Communication)?
What Is Open Database Communication (ODBC)?
✍: Guest
ODBC, Open Database Communication, a standard API (application program interface)
developed by Microsoft for Windows applications to communicate with database management servers.
If you want to access a database server through an ODBC driver from an application program, you need to meet the following requirements:
For example, if you want to connect to a SQL Server in a PHP script through an ODBC driver, you need to make sure that:
⇒ Adding a New DSN with the ODBC Driver for SQL Server
⇐ Configuring ODBC Connection and DSN for SQL Servers
2024-08-14, 3093🔥, 0💬
Popular Posts:
Is SQL Server Transact-SQL case sensitive? No. Transact-SQL is not case sensitive. Like the standard...
How To Update Multiple Rows with One UPDATE Statement in SQL Server? If the WHERE clause in an UPDAT...
What Are the Differences between DATE and TIMESTAMP in Oracle? The main differences between DATE and...
How To Create a Table Index in Oracle? If you have a table with a lots of rows, and you know that on...
How To Get Help Information from the Server in MySQL? While you are at the "mysql>" prompt, y...