Add per-technology CData build skills (python, adonet, odbc, java) + Step 8 handoff#7
Open
justinf-cdata wants to merge 2 commits into
Open
Add per-technology CData build skills (python, adonet, odbc, java) + Step 8 handoff#7justinf-cdata wants to merge 2 commits into
justinf-cdata wants to merge 2 commits into
Conversation
Add build-phase skills that take over from cdata-cli once app code is being written, one per driver edition: - cdata-cli-python (CData Python Connector, DB-API 2.0) - cdata-cli-adonet (ADO.NET Data Provider, NuGet) - cdata-cli-odbc (ODBC Driver, DSN / DSN-less) - cdata-cli-java (JDBC Driver, reuses the cdata-cli jar) Route cdata-cli Step 8 (Generate Application Code) to them by language / driver technology, replacing the JDBC-only driver-locations block.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What
Adds four build-phase skills that take over from
cdata-clionce application code is being written — one per CData driver edition:cdata-cli-python— CData Python Connector (DB-API 2.0)cdata-cli-adonet— ADO.NET Data Provider (NuGet)cdata-cli-odbc— ODBC Driver (DSN / DSN-less; Node.js and other non-JVM languages)cdata-cli-java— JDBC Driver (reuses the jarcdata-clialready downloads)Also routes
cdata-cliStep 8 (Generate Application Code) to these skills by language/driver technology (replacing the JDBC-only driver-locations block), and updates the README (skills table + all-vs-individual install).Why
cdata-clihandles discovery (connect, schema, SQL) well; Step 8 was the seam where one generic skill had to guess at per-technology packaging, licensing, and connection idioms. Each build skill captures the non-obvious specifics: where to obtain the driver, per-edition licensing, connection idiom, and language gotchas.Notes
cdata-clistays the prerequisite; each build skill assumes discovery is done and reuses the validated SQL + connection details.