Microsoft Azure SQL Database

Build apps that scale with managed and intelligent SQL database in the cloud.

Integrate the Microsoft Azure SQL Database API with the Supabase API

Setup the Microsoft Azure SQL Database API trigger to run a workflow which integrates with the Supabase API. Pipedream's integration platform allows you to integrate Microsoft Azure SQL Database and Supabase remarkably fast. Free for developers.

Delete Row with Supabase API on New Column from Microsoft Azure SQL Database API
Microsoft Azure SQL Database + Supabase
 
Try it
Delete Row with Supabase API on New or Updated Row from Microsoft Azure SQL Database API
Microsoft Azure SQL Database + Supabase
 
Try it
Execute Query with Microsoft Azure SQL Database API on New Row Added from Supabase API
Supabase + Microsoft Azure SQL Database
 
Try it
Execute Query with Microsoft Azure SQL Database API on New Webhook Event (Instant) from Supabase API
Supabase + Microsoft Azure SQL Database
 
Try it
Insert Row with Microsoft Azure SQL Database API on New Row Added from Supabase API
Supabase + Microsoft Azure SQL Database
 
Try it
New Column from the Microsoft Azure SQL Database API

Triggers when a new column is added to a table.

 
Try it
New Row Added from the Supabase API

Emit new event for every new row added in a table. See documentation here

 
Try it
New or Updated Row from the Microsoft Azure SQL Database API

Triggers when a new row is added or an existing row is updated.

 
Try it
New Webhook Event (Instant) from the Supabase API

Emit new event for every insert, update, or delete operation in a table. This source requires user configuration using the Supabase website. More information in the README. Also see documentation here

 
Try it
Execute Query with the Microsoft Azure SQL Database API

Executes a SQL query and returns the results. See the documentation

 
Try it
Delete Row with the Supabase API

Deletes row(s) in a database. See the docs here

 
Try it
Insert Row with the Microsoft Azure SQL Database API

Inserts a new row in a table. See the documentation

 
Try it
Insert Row with the Supabase API

Inserts a new row into a database. See the docs here

 
Try it
Remote Procedure Call with the Supabase API

Call a Postgres function in a database. See the docs here

 
Try it

Overview of Microsoft Azure SQL Database

The Microsoft Azure SQL Database API allows you to manage and interact with your SQL databases hosted on Azure directly from Pipedream. It provides a serverless way to run SQL queries, manage tables, and handle database management tasks. You can create, read, update, and delete database records, execute stored procedures, and perform a variety of other SQL operations. Leveraging this API on Pipedream enables you to automate workflows, respond to database events in real-time, and integrate with countless other apps and services.

Connect Microsoft Azure SQL Database

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
import sql from "mssql"
export default defineComponent({
  props: {
    azure_sql: {
      type: "app",
      app: "azure_sql",
    }
  },
  async run({steps, $}) {
    const { host, username, password, port, database, encrypt } = this.azure_sql.$auth
    const config = {
      user: username, 
      password, 
      server: host, 
      port, 
      database, 
      authentication: {
          type: 'default'
      },
      options: {
          encrypt
      }
    }
    await sql.connect(config);
    return await sql.query`SELECT GETDATE()`
  },
})

Overview of Supabase

Supabase is a real-time backend-as-a-service that provides developers with a suite of tools to quickly build and scale their applications. It offers database storage, authentication, instant APIs, and real-time subscriptions. With the Supabase API, you can perform CRUD operations on your database, manage users, and listen to database changes in real time. When integrated with Pipedream, you can automate workflows that react to these database events, synchronize data across multiple services, or streamline user management processes.

Connect Supabase

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    supabase: {
      type: "app",
      app: "supabase",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://${this.supabase.$auth.subdomain}.supabase.co/rest/v1/`,
      headers: {
        Authorization: `Bearer ${this.supabase.$auth.service_key}`,
        "apikey": `${this.supabase.$auth.service_key}`,
      },
    })
  },
})