From 905cc2ef62e088a058798c867caaea20c8669a76 Mon Sep 17 00:00:00 2001 From: Almaz Sharipov Date: Tue, 1 Apr 2025 10:45:09 +0300 Subject: [PATCH] Update README.md --- README.md | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index f41a6f7..57befe6 100644 --- a/README.md +++ b/README.md @@ -4,11 +4,19 @@ A lightweight REST service designed to replace ADODB calls in legacy software systems that support web requests. This service streamlines database interactions while maintaining security and efficiency. -For example, you can remove all Linux-incompatible components, such as the following items, and use web requests in a similar manner instead: +For example, you can remove all Linux-incompatible components, such as the following items: ``` Connection = New COMObject("ADODB.Connection"); RecordSet = New COMObject("ADODB.Recordset"); ``` +and use web requests in a similar manner instead, using a simple library: +``` +Function OpenSQLConnection() Export + HTTP = New HTTPConnection; + Path = "/api/v1/connection"; + ... +``` + ## Key features: