From aa2f5f9fcac82d0db045aa29477c7240bccadb8b Mon Sep 17 00:00:00 2001 From: Almaz Sharipov Date: Wed, 9 Apr 2025 11:05:46 +0300 Subject: [PATCH] Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 5009ba5..426895e 100644 --- a/README.md +++ b/README.md @@ -8,13 +8,13 @@ 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 (1C:Enterprise example): -```1C Enterprise +```1C Connection = New COMObject("ADODB.Connection"); Connection.Open(ConnectionString); ``` and use web requests in a similar manner instead, using a simple library to receive SQL query results in a JSON with variable columns you defined in SQL select statement: -```1C Enterprise +```1C Function OpenSQLConnection(ConnectionString) Export HTTP = New HTTPConnection; Path = "/api/v1/connection";