skip to Main Content

Laravel Query With sqlsrv

i have a query to fetch all data and these data are support tickets, each support ticket has many comments, i want to order these data by last comment if exists else order by ticket created date any idea what…

VIEW QUESTION

Php – Connecting to mssqlnative

I have a working website running on Unix that connects via VPN to a SQL Server database using dblib. The connection has been created in years past like this: $pdo = new PDO('dblib:host=192.168.2.4:1433;dbname=Andover;charset=utf8', 'UserName', 'Password'); $Query= "Select * From tablename";…

VIEW QUESTION

Ubuntu – SQL Server docker compose running errors

I'm currently trying to use docker-compose to set up two containers, one is using Dockerfile while another is from a public available image: version: '3.4' services: sampleweb: image: ${DOCKER_REGISTRY-}saucedsampleweb build: context: . dockerfile: SaucedSampleWeb/Dockerfile links: - "mssql:database" mssql: image: mcr.microsoft.com/mssql/server:2019-latest…

VIEW QUESTION
Back To Top
Search