{"id":18736322,"url":"https://github.com/dotnetcore/dotnetcore.gaussdb","last_synced_at":"2025-07-25T23:38:34.588Z","repository":{"id":211950256,"uuid":"730338190","full_name":"dotnetcore/DotNetCore.GaussDB","owner":"dotnetcore","description":"It's the foundation of DotNetCore.EntityFrameworkCore.GaussDB ","archived":false,"fork":false,"pushed_at":"2023-12-24T09:40:15.000Z","size":563,"stargazers_count":8,"open_issues_count":2,"forks_count":2,"subscribers_count":9,"default_branch":"main","last_synced_at":"2025-03-22T02:04:01.292Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"C#","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"postgresql","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/dotnetcore.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}},"created_at":"2023-12-11T17:51:22.000Z","updated_at":"2024-12-31T02:18:24.000Z","dependencies_parsed_at":"2023-12-24T10:27:15.612Z","dependency_job_id":null,"html_url":"https://github.com/dotnetcore/DotNetCore.GaussDB","commit_stats":null,"previous_names":["dotnetcore/dotnetcore.gaussdb"],"tags_count":1,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dotnetcore%2FDotNetCore.GaussDB","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dotnetcore%2FDotNetCore.GaussDB/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dotnetcore%2FDotNetCore.GaussDB/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dotnetcore%2FDotNetCore.GaussDB/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/dotnetcore","download_url":"https://codeload.github.com/dotnetcore/DotNetCore.GaussDB/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248618723,"owners_count":21134287,"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","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-11-07T15:20:14.818Z","updated_at":"2025-04-12T19:22:00.742Z","avatar_url":"https://github.com/dotnetcore.png","language":"C#","funding_links":[],"categories":[],"sub_categories":[],"readme":"# DotNetCore.GaussDB - the .NET data provider for PostgreSQL\n[![Member project of .NET Core Community](https://img.shields.io/badge/member%20project%20of-NCC-9e20c9.svg)](https://github.com/dotnetcore) \n[![nuget](https://img.shields.io/nuget/v/DotNetCore.GaussDB.svg?style=flat-square)](https://www.nuget.org/packages/DotNetCore.GaussDB) \n[![stats](https://img.shields.io/nuget/dt/DotNetCore.GaussDB.svg?style=flat-square)](https://www.nuget.org/stats/packages/DotNetCore.GaussDB?groupby=Version) \n\n## Quickstart\n\nHere's a basic code snippet to get you started:\n\n```csharp\nusing GaussDB;\n\nvar connString = \"host={host};port={port};username={username};password={password};database={database}\";\n\nvar dataSourceBuilder = new GaussDBDataSourceBuilder(connString);\nvar dataSource = dataSourceBuilder.Build();\n\nvar conn = await dataSource.OpenConnectionAsync();\n\n// Insert some data\nawait using (var cmd = new GaussDBCommand(\"INSERT INTO data (some_field) VALUES (@p)\", conn))\n{\n    cmd.Parameters.AddWithValue(\"p\", \"Hello world\");\n    await cmd.ExecuteNonQueryAsync();\n}\n\n// Retrieve all rows\nawait using (var cmd = new GaussDBCommand(\"SELECT some_field FROM data\", conn))\nawait using (var reader = await cmd.ExecuteReaderAsync())\n{\n    while (await reader.ReadAsync())\n        Console.WriteLine(reader.GetString(0));\n}\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdotnetcore%2Fdotnetcore.gaussdb","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdotnetcore%2Fdotnetcore.gaussdb","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdotnetcore%2Fdotnetcore.gaussdb/lists"}