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-01 10:45:09 +03:00
committed by GitHub
parent 15f75598f6
commit 905cc2ef62

View File

@@ -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: