Send sense data to MS SQL Server database

Hi..
I started a project with arduino. But now I am in a trouble.

I want to send HC-SR04 sense data to SQL server database, but I don't know how establish a connection with SQL server database with arduino. I try lot to find this, but I couldn't find that..

Please help me to solve this problem......

A basic Arduino can communicate with a PC over USB. A Python program can talk to the Arduino from the PC side, and can talk to a MSSQL database.

Or, you could use an Ethernet shield, with the Arduino-as-client, and make GET requests, with the data to store, and have the script write to the database.

The Arduino can not communicate directly with the database engine.

Thank you.. it is very useful.. I will try....