Sugar CRM ODBC Driver for PHP Connection

Accessing the Sugar CRM database can be fast and seamless by using the Open Database Connectivity (ODBC) solution. Providing full interoperability, the ODBC driver for Sugar CRM allows you to access live Sugar CRM data directly from PHP. It enables you to retrieve data to PHP, and review and modify these data right in this application.

Sugar CRM Key Features

  • Customization and flexibility
  • Forecasting and analytics
  • Files sync and share
  • Sales automation

PHP Key Features

  • Web development
  • Database abstraction layers
  • Server-side scripting
  • Frameworks and CMS integration
Native Connectivity to Sugar CRM

Direct Connection

Our data connector enables various ODBC-aware applications to establish a direct connection to Sugar CRM via TCP/IP to eliminate the need for a Sugar CRM client. A direct connection increases the speed of data transmission between PHP and Sugar CRM for real-time analytics. It streamlines the deployment process since there is no need to distribute any additional client-side software with the ODBC driver for Sugar CRM.

What are some reasons to choose Devart ODBC Driver for Sugar CRM?

Integration

Integration

The ODBC driver for Sugar CRM is compatible with PHP allowing extraction of data by executing SQL statements.

Platforms Variety

Platforms Variety

ODBC Driver for Sugar CRM can be used with 32-bit and 64-bit applications on both x32 and x64 platforms, so there is no need to additionally configure the driver, applications, or environment.

Fully Unicode-Compliant Driver

Fully Unicode-Compliant Driver

With our fully Unicode-compliant driver, you can properly retrieve and modify any data in multilingual Sugar CRM databases, regardless of their character set: Latin, Cyrillic, Hebrew, Chinese, etc., and in any language environment.

How to Download, Install, and Configure the ODBC Driver for Sugar CRM?

Download the driver. Run the installer and follow the instructions in the wizard.
Activate the driver in ODBC Administrator. In the System DSN tab, click the Add button and select the needed driver. Click Finish.
To configure the DSN In the ODBC Data Source Administrator, move to the System DSN tab and select the installed ODBC driver. Click Add. In the appeared Create New Data Source dialog, insert the database connection data. You may test the connectivity by clicking the Test Connection button. To save the DSN, click Ok.
Tools
Connecting to Sugar CRM databases from PHP
Below is a PHP connection string and a code sample and that show you how to connect to a database using the standard PHP functions. Adhering to standardized SQL will prove useful if you decide to use a different databases for your PHP app in the future, e.g. migrate from MySQL to PostgreSQL or MS SQL.

These functions also work for accessing data in cloud applications from PHP, such as Mailchimp, Salesforce, Dynamics 365, BigCommerce, or QuickBooks.

Need to connect PHP to a database? ODBC is an API that allows you to connect to a data source, such as PostgreSQL, Oracle, MySQL, MongoDB or SQL Server, using standard PHP functions and Devart ODBC Drivers. You can use PHP with databases via a connector to deliver HTML to a web browser that requests a resource.
To connect to a database and retrieve data using the PHP progamming language, you only need a few functions:
  • odbc_exec() function to execute an SQL statement;
  • odbc_fetch_row() function to return records from the result set;
  • odbc_result() function to read fields from a record;
  • finally, odbc_close() function is used to close an ODBC connection.

ODBC database connection in PHP with
odbc_connect() function

Install the driver and configure an ODBC data source in the driver settings

01.The PHP odbc_connect() function is used to connect to an ODBC data source.

\n$user = "myusername";
$password = "mypassword";
$ODBCConnection = odbc_connect("DRIVER={Devart ODBC Driver for SQLite};Direct=True;Database=mydatabase", $user, $password);
                
Start SQL Server Management Studio and create a linked server

02.The odbc_exec() function is used to execute an SQL statement.

\n$SQLQuery = "SELECT * FROM autotest.dept";
$RecordSet = odbc_exec($ODBCConnection, $SQLQuery);
                
Run a query against the data storage

03.The odbc_fetch_row() function is used to return records from the result set.

\nwhile (odbc_fetch_row($RecordSet)) {
    $result = odbc_result_all($RecordSet, "border=1");
}
odbc_close($ODBCConnection);

Advantages of Connectivity to Sugar CRM from PHP via ODBC Driver

Secure Connection

Secure Connection

Every operation with Sugar CRM becomes significantly faster using such capabilities of our driver as local data caching, connection pooling, and much more.

Working with PHP using Multiple Functions

Working with PHP using Multiple Functions

Using PHP, you can create tables, add data, select, delete, sort, edit, combine data from several database tables, and find unique values quickly and easily.

ODBC Conformance

ODBC Conformance

The driver fully supports the ODBC interface, its data types, and functions. It offers advanced connection string parameters and allows any ODBC-compliant desktop or web application to connect to Sugar CRM from PHP on various platforms.

Simple SQL Querying on PHP Files

Simple SQL Querying on PHP Files

PHP processes SQL through its SQL dialect. Using ODBC connection, it is simple to execute different SQL queries to retrieve entire tables or specific columns from Excel, filter data, formate data, numbers, etc.

Cost-Effective Deployment

Cost-Effective Deployment

Installing the driver is easy with the standalone installation file. There is no need in deploying and configuring any additional software which results in a reduction in deployment costs.

Sharing Your Data with Excel

Sharing Your Data with PHP

You can share your data with other users in PHP quickly and easily. Upload your PHP data to the SharePoint lists so that it can be available for you and others to use to create reports, data models, dashboards, etc.

Popular PHP Integrations Using ODBC Driver