{"id":20123887,"url":"https://github.com/dalenewman/transformalize.provider.access","last_synced_at":"2026-06-01T01:31:27.638Z","repository":{"id":141704103,"uuid":"112487935","full_name":"dalenewman/Transformalize.Provider.Access","owner":"dalenewman","description":"an Access (.mdb) Provider for Transformalize","archived":false,"fork":false,"pushed_at":"2020-06-19T17:01:51.000Z","size":3234,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-03-02T20:41:31.666Z","etag":null,"topics":["access","etl","transformalize"],"latest_commit_sha":null,"homepage":"","language":"C#","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/dalenewman.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-11-29T14:49:26.000Z","updated_at":"2020-06-19T17:01:55.000Z","dependencies_parsed_at":"2024-04-19T05:30:22.227Z","dependency_job_id":null,"html_url":"https://github.com/dalenewman/Transformalize.Provider.Access","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/dalenewman/Transformalize.Provider.Access","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dalenewman%2FTransformalize.Provider.Access","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dalenewman%2FTransformalize.Provider.Access/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dalenewman%2FTransformalize.Provider.Access/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dalenewman%2FTransformalize.Provider.Access/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/dalenewman","download_url":"https://codeload.github.com/dalenewman/Transformalize.Provider.Access/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dalenewman%2FTransformalize.Provider.Access/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33756575,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-05-31T02:00:06.040Z","response_time":95,"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":["access","etl","transformalize"],"created_at":"2024-11-13T19:46:55.090Z","updated_at":"2026-06-01T01:31:27.631Z","avatar_url":"https://github.com/dalenewman.png","language":"C#","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Transformalize.Provider.Access\n\nThis is an Access database provider for Transformalize.\n\nBuild the Autofac project and put it's output into Transformalize's *plugins* folder. \nFor this to work, you'll need the [64-bit OLEDB driver](https://www.microsoft.com/en-us/download/details.aspx?id=13255).\n\n### Write Usage\n\n```xml\n\u003cadd name='Bogus' mode='init' flatten='true'\u003e\n  \u003cconnections\u003e\n    \u003cadd name='input' provider='bogus' seed='1' /\u003e\n    \u003cadd name='output' provider='access' file='c:\\temp\\junk.mdb' /\u003e\n  \u003c/connections\u003e\n  \u003centities\u003e\n    \u003cadd name='Contact' size='1000'\u003e\n      \u003cfields\u003e\n        \u003cadd name='Identity' type='int' primary-key='true' /\u003e\n        \u003cadd name='FirstName' /\u003e\n        \u003cadd name='LastName' /\u003e\n        \u003cadd name='Stars' type='byte' min='1' max='5' /\u003e\n        \u003cadd name='Reviewers' type='int' min='0' max='500' /\u003e\n      \u003c/fields\u003e\n    \u003c/add\u003e\n  \u003c/entities\u003e\n\u003c/add\u003e\n```\n\nThis writes 1000 rows of bogus data to an Access database.\n\n### Read Usage\n\n```xml\n\u003cadd name='BogusRead' read-only='true' \u003e\n  \u003cconnections\u003e\n    \u003cadd name='input' provider='access' file='c:\\temp\\junk.mdf' /\u003e\n  \u003c/connections\u003e\n  \u003centities\u003e\n    \u003cadd name='BogusFlat' page='1' size='10'\u003e\n      \u003corder\u003e\n        \u003cadd field='Identity' /\u003e\n      \u003c/order\u003e\n      \u003cfields\u003e\n        \u003cadd name='Identity' type='int' /\u003e\n        \u003cadd name='FirstName' /\u003e\n        \u003cadd name='LastName' /\u003e\n        \u003cadd name='Stars' type='byte' /\u003e\n        \u003cadd name='Reviewers' type='int' /\u003e\n      \u003c/fields\u003e\n    \u003c/add\u003e\n  \u003c/entities\u003e\n\u003c/add\u003e\n```\n\nThis reads 10 rows of bogus data from an Access database:\n\n\u003cpre\u003e\n\u003cstrong\u003eIdentity,FirstName,LastName,Stars,Reviewers\u003c/strong\u003e\n1,Justin,Konopelski,3,153\n2,Eula,Schinner,2,41\n3,Tanya,Shanahan,4,412\n4,Emilio,Hand,4,469\n5,Rachel,Abshire,3,341\n6,Doyle,Beatty,4,458\n7,Delbert,Durgan,2,174\n8,Harold,Blanda,4,125\n9,Willie,Heaney,5,342\n10,Sophie,Hand,2,176\u003c/pre\u003e","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdalenewman%2Ftransformalize.provider.access","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdalenewman%2Ftransformalize.provider.access","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdalenewman%2Ftransformalize.provider.access/lists"}