Skip to main content

SQL Server

Connect to Microsoft SQL Server databases.

SQL Server Logo

Authentication

This connector uses Token-based authentication.

info

Set up your connection in the Abstra Console before using it in your workflows.

How to use

Using the Smart Chat

Execute the action "CHOOSE_ONE_ACTION_BELOW" from my connector "YOUR_CONNECTOR_NAME" using the params "PARAMS_HERE".

Using the Web Editor

from abstra.connectors import run_connection_action

result = run_connection_action(
connection_name="your_connection_name",
action_name="your_action_name",
params={
"param1": "value1",
"param2": "value2"
})

Available Actions

This connector provides 9 actions:

ActionPurposeParameters
queryExecute a raw SQL queryquery (string) required
params (object)
selectSelect records from a tabletable (string) required
columns (array)
where (object)
orderBy (string)
limit (number)
offset (number)
insertInsert a record into a tabletable (string) required
data (object) required
updateUpdate records in a tabletable (string) required
data (object) required
where (object) required
deleteDelete records from a tabletable (string) required
where (object) required
list_tablesList all tables in the databaseNo parameters
list_schemasList all schemas in the databaseNo parameters
describe_tableGet the structure of a tabletable (string) required
test_connectionTest the database connectionNo parameters