skip to Main Content

azure function app connection to postgresql

const { app } = require('@azure/functions'); const ExcelJS = require('exceljs'); const { Pool } = require('pg'); app.storageBlob('storageBlobTrigger', { path: 'attachments/{name}', connection: 'MyStorageConnectionString', handler: async (context) => { // Obtain a reference to the blob stream const blobStream = context.bindingData.blobTrigger.openReadStream(); try…

VIEW QUESTION
Back To Top
Search