1
0
mirror of https://github.com/alm494/sql_proxy.git synced 2026-04-05 11:51:03 +02:00

Update README.md

This commit is contained in:
Almaz Sharipov
2025-04-09 11:05:46 +03:00
committed by GitHub
parent 7740751d9f
commit aa2f5f9fca

View File

@@ -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";