admin管理员组文章数量:1317898
In my jenkins pipeline job I need to connect to a ms sql db and fetch some data, something like the below:
pipeline {
stages {
stage('Fetch Data from Database') {
steps {
script {
// connect to db
// fetch data
I have tried a few different methods, one example like:
sql = groovy.sql.Sql.newInstance(DB_URL, DB_CREDENTIALS_USR, DB_CREDENTIALS_PSW, DB_DRIVER)
but I get the error: "No suitable driver found".
Firstly, is this a common/best practice way to use sql in the pipeline?
Secondly, what is the best practice for getting the driver e.g. manually download the .jar and put it in some jenkins folder, or use some plugin to handle it?
本文标签: mssql jdbcHow can I use sql in a jenkins pipeline jobStack Overflow
版权声明:本文标题:mssql jdbc - How can I use sql in a jenkins pipeline job? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1742036000a2417297.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论