Skip to content

RunSqlSelect

.halguru-action.yamlRunSqlSelect

Gets or sets the SQL SELECT action executed by the agent. This property is used to define an action where the agent interacts with a database by executing a SQL SELECT query. It contains the details for performing the database operation, such as the provider, connection string, query, and explanation. The result of the query can also be stored and accessed through the corresponding SqlSelectAction.

RunSqlSelect:
  DatabaseProvider: SqlServer
  ConnectionString: Server=localhost;Database=HalGuru;User Id=sa;Password=;
  SqlQuery: SELECT * FROM Users
  Explanation: 

Properties#

Name Type Required Description
DatabaseProvider Text ✔️ Specifies the database provider to be used for executing the SQL query.
ConnectionString Text ✔️ Contains the connection details required to establish communication with the target database.
SqlQuery Text ✔️ Represents the SQL SELECT query that will be executed against the database.
Explanation Text Provides a descriptive explanation of the SQL SELECT action.

Technical Information#

Property Value
Path RunSqlSelect
Internal Type ActionModels.RunSqlSelectAction
Internal Root Type ActionConfiguration
File Extension .halguru-action.yaml
JSON Schema halguru-action-schema.json

Last updated: 2025-10-13
Autogenerated: Yes
AI powered: Yes
Core version: 1.66.0