From 8520f22e22de75768970a1b4dcadee0b5d389d2f Mon Sep 17 00:00:00 2001 From: Nick Todd Date: Wed, 14 Feb 2024 13:35:08 +0000 Subject: [PATCH] 2306: Updated documentation --- CHANGELOG.md | 1 + .../simulation_components/system/database_client_server.rst | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index cc52a197..ce366d26 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -26,6 +26,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Fixed a bug where the red agent acted to early - Fixed the order of service health state - Fixed an issue where starting a node didn't start the services on it +- Added support for SQL INSERT command. diff --git a/docs/source/simulation_components/system/database_client_server.rst b/docs/source/simulation_components/system/database_client_server.rst index 0b0dcc8e..07912f3e 100644 --- a/docs/source/simulation_components/system/database_client_server.rst +++ b/docs/source/simulation_components/system/database_client_server.rst @@ -17,7 +17,7 @@ Key capabilities - Creates a database file in the ``Node`` 's ``FileSystem`` upon creation. - Handles connecting clients by maintaining a dictionary of connections mapped to session IDs. - Authenticates connections using a configurable password. -- Simulates ``SELECT`` and ``DELETE`` SQL queries. +- Simulates ``SELECT``, ``DELETE`` and ``INSERT`` SQL queries. - Returns query results and status codes back to clients. - Leverages the Service base class for install/uninstall, status tracking, etc.