{"id":34160083,"url":"https://github.com/touyu/sqlinterpolator","last_synced_at":"2026-03-12T19:33:59.974Z","repository":{"id":57502662,"uuid":"226095237","full_name":"touyu/sqlinterpolator","owner":"touyu","description":"Generate full query from placeholder query and args.","archived":false,"fork":false,"pushed_at":"2019-12-05T13:43:56.000Z","size":13,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-12-18T02:45:53.448Z","etag":null,"topics":["go","query","sql","sqlboiler"],"latest_commit_sha":null,"homepage":"","language":"Go","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/touyu.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}},"created_at":"2019-12-05T12:16:48.000Z","updated_at":"2019-12-05T13:53:47.000Z","dependencies_parsed_at":"2022-09-13T07:02:03.501Z","dependency_job_id":null,"html_url":"https://github.com/touyu/sqlinterpolator","commit_stats":null,"previous_names":[],"tags_count":4,"template":false,"template_full_name":null,"purl":"pkg:github/touyu/sqlinterpolator","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/touyu%2Fsqlinterpolator","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/touyu%2Fsqlinterpolator/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/touyu%2Fsqlinterpolator/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/touyu%2Fsqlinterpolator/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/touyu","download_url":"https://codeload.github.com/touyu/sqlinterpolator/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/touyu%2Fsqlinterpolator/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30439932,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-12T14:34:45.044Z","status":"ssl_error","status_checked_at":"2026-03-12T14:09:33.793Z","response_time":114,"last_error":"SSL_read: 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":["go","query","sql","sqlboiler"],"created_at":"2025-12-15T08:15:34.891Z","updated_at":"2026-03-12T19:33:59.966Z","avatar_url":"https://github.com/touyu.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# sqlinterpolator\nGenerate full query from placeholder query and args.\n\n## Install\n```\n$ go get -u github.com/touyu/sqlinterpolator\n```\n\n## Examples\n```golang\nfunc main() {\n    query := \"select * from users where id = ?;\"\n    args := []interface{}{6}\n\n    res, _ := sqlinterpolator.Interpolate(query, args)\n    fmt.Println(res)  // select * from users where id = 6;\n}\n```\n\n### SQLBoiler\n```golang\nqueryObject := models.NewQuery(From(\"users\"), models.UserWhere.ID.EQ(6))\nquery, args := queries.BuildQuery(queryObject)\nres, _ := sqlinterpolator.Interpolate(raw, args)\nfmt.Println(res)  // select * from users where id \u003c 6;\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftouyu%2Fsqlinterpolator","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftouyu%2Fsqlinterpolator","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftouyu%2Fsqlinterpolator/lists"}