with Microsoft Azure SQL Database and APImage?
Executes a SQL query and returns the results. See the documentation
Inserts a new row in a table. See the documentation
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.
import azure_sql from '@pipedream/azure_sql';
export default defineComponent({
props: {
azure_sql,
},
async run({ steps, $ }) {
// Component source code:
// https://github.com/PipedreamHQ/pipedream/tree/master/components/azure_sql
const queryObj = {
query: "SELECT GETDATE()",
values: [],
};
return await this.azure_sql.executeQuery(queryObj);
},
});import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
apimage: {
type: "app",
app: "apimage",
}
},
async run({steps, $}) {
const data = {
"prompt": `Generate an image depicting a modern workspace with clean design elements. Include a laptop, coffee mug, and subtle ambient lighting. `,
}
return await axios($, {
method: "post",
url: `https://apimage.org/api/ai-image-generate`,
headers: {
Authorization: `Bearer ${this.apimage.$auth.api_key}`,
"accept": `application/json`,
},
data,
})
},
})