{"id":22117718,"url":"https://github.com/prosumma/postgresqlexporter","last_synced_at":"2025-10-05T21:40:56.523Z","repository":{"id":85504714,"uuid":"80488438","full_name":"Prosumma/PostgreSQLExporter","owner":"Prosumma","description":"A simple library to create PostgreSQL-friendly import files","archived":false,"fork":false,"pushed_at":"2017-06-29T23:57:16.000Z","size":10,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-05-23T04:28:57.985Z","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":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Prosumma.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}},"created_at":"2017-01-31T03:37:10.000Z","updated_at":"2017-01-31T03:48:27.000Z","dependencies_parsed_at":null,"dependency_job_id":"e7201bce-2ae3-4676-a1a3-2f8aa8564cbc","html_url":"https://github.com/Prosumma/PostgreSQLExporter","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/Prosumma/PostgreSQLExporter","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Prosumma%2FPostgreSQLExporter","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Prosumma%2FPostgreSQLExporter/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Prosumma%2FPostgreSQLExporter/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Prosumma%2FPostgreSQLExporter/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Prosumma","download_url":"https://codeload.github.com/Prosumma/PostgreSQLExporter/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Prosumma%2FPostgreSQLExporter/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":278526242,"owners_count":26001325,"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-10-05T02:00:06.059Z","response_time":54,"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-12-01T13:38:49.082Z","updated_at":"2025-10-05T21:40:56.505Z","avatar_url":"https://github.com/Prosumma.png","language":"C#","funding_links":[],"categories":[],"sub_categories":[],"readme":"### PostgreSQL Exporter\n\nA simple library for exporting data that is compatible with PostgreSQL's `\\COPY` command.\n\nHere's a quick example:\n\n```cs\nusing (var connection = new SqlConnection(ConnectionString))\n{\n    connection.Open();\n    var command = connection.CreateCommand();\n    command.CommandText = \"SELECT * FROM [Cornholios]\";\n    using (var reader = command.ExecuteReader())\n    {\n        var exporter = new Exporter { ProgressInterval = 100000 };\n        exporter.Progress += (sender, e) =\u003e\n        {\n            Console.WriteLine($\"Wrote {e.Count} records.\");\n        };\n        exporter.Export(reader, Environment.ExpandEnvironmentVariables(\"%USERPROFILE%\\\\Desktop\\\\Cornholios.tsv\"));\n    }\n}\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fprosumma%2Fpostgresqlexporter","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fprosumma%2Fpostgresqlexporter","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fprosumma%2Fpostgresqlexporter/lists"}