{"id":15062586,"url":"https://github.com/themost-framework/mssql","last_synced_at":"2025-07-26T10:35:07.352Z","repository":{"id":39887496,"uuid":"254814529","full_name":"themost-framework/mssql","owner":"themost-framework","description":"Most Web Framework MSSQL data adapter","archived":false,"fork":false,"pushed_at":"2025-07-18T16:36:59.000Z","size":1351,"stargazers_count":1,"open_issues_count":8,"forks_count":3,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-07-18T19:22:31.157Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"bsd-3-clause","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/themost-framework.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2020-04-11T07:20:38.000Z","updated_at":"2025-07-18T16:36:29.000Z","dependencies_parsed_at":"2023-11-28T13:46:04.859Z","dependency_job_id":"a6a169b7-415a-4a98-b69a-3f8e90429bf2","html_url":"https://github.com/themost-framework/mssql","commit_stats":null,"previous_names":["themost-framework/themost-mssql"],"tags_count":42,"template":false,"template_full_name":null,"purl":"pkg:github/themost-framework/mssql","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/themost-framework%2Fmssql","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/themost-framework%2Fmssql/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/themost-framework%2Fmssql/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/themost-framework%2Fmssql/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/themost-framework","download_url":"https://codeload.github.com/themost-framework/mssql/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/themost-framework%2Fmssql/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":267150480,"owners_count":24043473,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-07-26T02:00:08.937Z","response_time":62,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-09-24T23:43:18.929Z","updated_at":"2025-07-26T10:35:07.324Z","avatar_url":"https://github.com/themost-framework.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# @themost/mssql\nMost Web Framework MSSQL Adapter\n\n## Install\n    npm install @themost/mssql\n## Usage\nRegister MSSQL adapter on app.json as follows:\n\n    \"adapterTypes\": [\n        ...\n        { \"name\":\"MSSQL Data Adapter\", \"invariantName\": \"mssql\", \"type\":\"@themost/mssql\" }\n        ...\n    ],\n    adapters: [\n        ...\n        { \"name\":\"development\", \"invariantName\":\"mssql\", \"default\":true,\n            \"options\": {\n              \"server\":\"localhost\",\n              \"user\":\"user\",\n              \"password\":\"password\",\n              \"database\":\"test\"\n            }\n        }\n        ...\n    ]\n\nIf you are intended to use MSSQL data adapter as the default database adapter set the property \"default\" to true.\n\n### Transaction Isolation Level\n\nTransaction isolation level controls the locking and row versioning behavior of Transact-SQL statements issued by a connection to SQL Server.\n\n```sql\nSET TRANSACTION ISOLATION LEVEL\n    { READ UNCOMMITTED\n    | READ COMMITTED\n    | REPEATABLE READ\n    | SNAPSHOT\n    | SERIALIZABLE\n    }\n```\n\n[https://learn.microsoft.com/en-us/sql/t-sql/statements/set-transaction-isolation-level-transact-sql?view=sql-server-ver16](https://learn.microsoft.com/en-us/sql/t-sql/statements/set-transaction-isolation-level-transact-sql?view=sql-server-ver16)\n\nUse `options/transactionIsolationLevel` and define transaction isolation level:\n\n```json\n{\n    \"name\":\"development\",\n    \"invariantName\":\"mssql\",\n    \"default\":true,\n    \"options\": {\n        \"server\":\"localhost\",\n        \"user\":\"user\",\n        \"password\":\"password\",\n        \"database\":\"test\",\n        \"options\": {\n            \"transactionIsolationLevel\": \"readCommitted\"\n        }\n    }\n}\n```\nThe possible values are `readUncommitted` | `readCommitted` | `repeatableRead` | `snapshot` | `serializable`\n\n## Development\n`themost-mssql` is a sub-module of [ Most Web Framework data adapters project](https://github.com/themost-framework/themost-adapters)\n\nSo, checkout parent project\n\n    git checkout (https://github.com/themost-framework/themost-adapters.git\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fthemost-framework%2Fmssql","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fthemost-framework%2Fmssql","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fthemost-framework%2Fmssql/lists"}