{"id":28925746,"url":"https://github.com/ericcj/metabase-netsuite-driver","last_synced_at":"2026-02-20T22:00:51.974Z","repository":{"id":62951352,"uuid":"563027704","full_name":"ericcj/metabase-netsuite-driver","owner":"ericcj","description":"Unofficial Netsuite SuiteAnalytics Connect JDBC Metabase Driver","archived":false,"fork":false,"pushed_at":"2026-02-03T21:06:25.000Z","size":31,"stargazers_count":6,"open_issues_count":3,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-02-04T09:38:00.351Z","etag":null,"topics":["metabase","metabase-driver","netsuite","netsuite-customisation","netsuite-development","netsuite-integration"],"latest_commit_sha":null,"homepage":"https://www.metabase.com/docs/latest/developers-guide/partner-and-community-drivers","language":"Clojure","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"agpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ericcj.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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2022-11-07T18:58:21.000Z","updated_at":"2026-02-03T20:56:24.000Z","dependencies_parsed_at":"2024-03-30T18:23:57.059Z","dependency_job_id":null,"html_url":"https://github.com/ericcj/metabase-netsuite-driver","commit_stats":null,"previous_names":[],"tags_count":9,"template":false,"template_full_name":null,"purl":"pkg:github/ericcj/metabase-netsuite-driver","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ericcj%2Fmetabase-netsuite-driver","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ericcj%2Fmetabase-netsuite-driver/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ericcj%2Fmetabase-netsuite-driver/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ericcj%2Fmetabase-netsuite-driver/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ericcj","download_url":"https://codeload.github.com/ericcj/metabase-netsuite-driver/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ericcj%2Fmetabase-netsuite-driver/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29666419,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-20T19:49:36.704Z","status":"ssl_error","status_checked_at":"2026-02-20T19:44:05.372Z","response_time":59,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6: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":["metabase","metabase-driver","netsuite","netsuite-customisation","netsuite-development","netsuite-integration"],"created_at":"2025-06-22T11:10:16.804Z","updated_at":"2026-02-20T22:00:51.968Z","avatar_url":"https://github.com/ericcj.png","language":"Clojure","funding_links":[],"categories":["Metabase Community Drivers"],"sub_categories":["Unofficial and Third Party Examples"],"readme":"# Installation\n\nAll you need you do is drop the netsuite.metabase-driver.jar (from the Assets of the latest release https://github.com/ericcj/metabase-netsuite-driver/releases/), netsuite JDBC NQjc.jar from https://docs.oracle.com/en/cloud/saas/netsuite/ns-online-help/section_3994742720.html and oracle ojdbc8.jar (see https://www.metabase.com/docs/latest/databases/connections/oracle even if though it's unused just because we inherit that driver) in your `/path/to/metabase/plugins/` directory.\n\n# Why\n\nhttps://github.com/metabase/metabase/issues/26251\n\n# Building the driver\n\n## Prereq: Install the Clojure CLI\n\nMake sure you have the `clojure` CLI version `1.10.3.933` or newer installed; you can check this with `clojure\n--version`. Follow the instructions at https://clojure.org/guides/getting_started if you need to install a\nnewer version.\n\n## Prereq: Download JDBC jar\n\nYou need \\~/NetSuiteJDBCDrivers/NQjc.jar from above\n\n## Prereq: Configure paths in `~/.clojure/deps.edn`\n\nSee https://github.com/metabase/sudoku-driver/blob/master/README.md#hacking-on-the-driver-locally\n\n## Build it\n\n\n```sh\n# Example for building the driver with bash or similar\n\n# switch to the local checkout of the Metabase repo\ncd /path/to/metabase/repo\n\n# to create metabase/resources/modules/oracle.metabase-driver.jar\nbin/build-drivers.sh\n\n# get absolute path to the driver project directory\nDRIVER_PATH=`readlink -f ~/metabase-netsuite-driver`\n\n# Build driver. See explanation at https://github.com/metabase/sudoku-driver/blob/master/README.md#build-it-updated-for-build-script-changes-in-metabase-0460\nclojure \\\n  -Sdeps \"{:aliases {:netsuite {:extra-deps {com.metabase/netsuite-driver {:local/root \\\"$DRIVER_PATH\\\"}}}}}\"  \\\n  -X:build:netsuite \\\n  build-drivers.build-driver/build-driver! \\\n  \"{:driver :netsuite, :project-dir \\\"$DRIVER_PATH\\\", :target-dir \\\"$DRIVER_PATH/target\\\"}\"\n```\n\nwill create `target/netsuite.metabase-driver.jar`. Copy this file and NQjc.jar to `/path/to/metabase/plugins/` and restart your\nserver, and the driver will show up.\n\n## Testing\n\nSample driver stuff might work https://github.com/metabase/sample-driver#interactive-testing\n\ne.g. this does work:\n\nMB_NETSUITE_DRIVER_TEST_PLUGIN_MANIFEST_PATH=/path/to/metabase-netsuite-driver/resources/metabase-plugin.yaml clojure -M:dev:ee:ee-dev:drivers:drivers-dev:user:trace:deps-alpha:user/metabase-netsuite-driver:nrepl\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fericcj%2Fmetabase-netsuite-driver","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fericcj%2Fmetabase-netsuite-driver","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fericcj%2Fmetabase-netsuite-driver/lists"}