{"id":17020497,"url":"https://github.com/gishreloaded/msdb-query","last_synced_at":"2026-04-24T12:31:32.994Z","repository":{"id":177061396,"uuid":"659807532","full_name":"GishReloaded/msdb-query","owner":"GishReloaded","description":".NET Library for help of queries to database","archived":false,"fork":false,"pushed_at":"2023-06-28T20:26:10.000Z","size":33,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-06-14T13:44:01.279Z","etag":null,"topics":["library","mssql","mssql-database","query"],"latest_commit_sha":null,"homepage":"","language":"Visual Basic .NET","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/GishReloaded.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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}},"created_at":"2023-06-28T15:46:40.000Z","updated_at":"2024-06-06T12:51:21.000Z","dependencies_parsed_at":"2023-07-10T04:47:51.269Z","dependency_job_id":null,"html_url":"https://github.com/GishReloaded/msdb-query","commit_stats":null,"previous_names":["gishreloaded/msdb-query"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/GishReloaded/msdb-query","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GishReloaded%2Fmsdb-query","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GishReloaded%2Fmsdb-query/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GishReloaded%2Fmsdb-query/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GishReloaded%2Fmsdb-query/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/GishReloaded","download_url":"https://codeload.github.com/GishReloaded/msdb-query/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GishReloaded%2Fmsdb-query/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32223818,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-24T10:26:35.452Z","status":"ssl_error","status_checked_at":"2026-04-24T10:25:27.643Z","response_time":64,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["library","mssql","mssql-database","query"],"created_at":"2024-10-14T07:05:10.602Z","updated_at":"2026-04-24T12:31:32.980Z","avatar_url":"https://github.com/GishReloaded.png","language":"Visual Basic .NET","funding_links":[],"categories":[],"sub_categories":[],"readme":"# msdb-query\n.NET Library for help of queries to database\n\n### Examples\n```vb\n    Public Function InsertUser(ByVal email As String, ByVal name As String) As Boolean\n        Using connection As SqlConnection = SQL.sqlConnection(connectionString)\n\n            If SQL.Connect(connection) Then\n                Dim cmd As SqlCommand = New SqlCommand(\"[dbo].[InsertUser]\", connection)\n                cmd.Parameters.AddWithValue(\"Email\", email)\n                cmd.Parameters.AddWithValue(\"Name\", name)\n                Dim success As Boolean = SQL.ExecuteNonQuery(cmd)\n                Return success\n            End If\n        End Using\n    End Function\n\n    Public Class UserModel\n        \u003cSQLParameter(\"Id\")\u003e\n        Public Property Id As Integer\n        \u003cSQLParameter(\"RoleId\")\u003e\n        Public Property RoleId As Integer\n        \u003cSQLParameter(\"Email\")\u003e\n        Public Property Email As String\n        \u003cSQLParameter(\"Name\")\u003e\n        Public Property Name As String\n    End Class\n\n    Public Function GetUsers() As List(Of UserModel)\n        Dim list As List(Of UserModel) = New List(Of UserModel)()\n\n        Using connection As SqlConnection = SQL.sqlConnection(connectionString)\n\n            If SQL.Connect(connection) Then\n                Dim cmd As SqlCommand = New SqlCommand(\"[dbo].[GetUsers]\", connection)\n                Dim success As List(Of UserModel) = SQL.DataReader(Of UserModel)(cmd)\n                If success IsNot Nothing Then list.AddRange(success)\n            End If\n        End Using\n\n        Return list\n    End Function\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgishreloaded%2Fmsdb-query","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fgishreloaded%2Fmsdb-query","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgishreloaded%2Fmsdb-query/lists"}