dongtai419309 2018-05-02 04:25
浏览 115
已采纳

在Golang中执行SQL Plus命令

I need to run a .sql file in Golang with Sql Plus, which creates a table and a file named tb_data_20180502104923. I named the .sql script as tb_data_20180502104923.sql with contents as follows:

set headsep off
set pagesize 0
set trimspool on
set trimout on
create table tb_data_20180502104923
as
select * from tb_data;
spool tb_data_20180502104923.txt
SELECT data_id||';'||data_content FROM tb_data_20180502104923;
spool off

I have tried this with os/exec like this:

func main(){
    cmd := exec.Command("sqlplus -s admin/123#@172.10.1.211:1521/orcl < tb_data_20180502104923.sql")

    var out, stderr bytes.Buffer

    cmd.Stdout = &out
    cmd.Stderr = &stderr

    err := cmd.Run()
    if err != nil {
        log.Fatalf("Error executing query. Command Output: %+v
: %+v, %v", out.String(), stderr.String(), err)
    }
}

Which return me an error message:

2018/05/02 11:06:46 Error executing query. Command Output: 
: , fork/exec sqlplus -s admin/123#@172.10.1.1:1521/orcl < tb_data_20180502104923.sql: no such file or directory
exit status 1

And if I change the cmd := exec.Command statement to:

cmd := exec.Command("sqlplus", "-s", "admin/123#@172.10.1.211:1521/orcl", "< tb_data_20180502104923.sql")

It return me nothing, and both tabel & file tb_data_20180502104923 did not created.

Where did I do it wrong, or is using Sql Plus not possible in Golang? And if it's not possible, is there any other way to do what I need?

  • 写回答

1条回答 默认 最新

  • drd0833 2018-05-02 07:09
    关注

    Allright, nevermind, looks like it's just my poor understanding on how to use os/exec.

    So in case someone doesn't know how to use it, here how I solve my own problem.

    I change

    cmd := exec.Command("sqlplus", "-s", "admin/123#@172.10.1.211:1521/orcl", "< tb_data_20180502104923.sql")
    

    to

    cmd := exec.Command("bash", "-c", "sqlplus -s admin/123#@172.10.1.211:1521/orcl < tb_data_20180502104923.sql")
    

    The first parameter bash is the kind of Shell you want to use,

    the second parameter -c is the argument of bash,

    and the third parameter is the command which I want to execute.

    Well, correct me if I'm wrong.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 wegame打不开英雄联盟
  • ¥15 公司的电脑,win10系统自带远程协助,访问家里个人电脑,提示出现内部错误,各种常规的设置都已经尝试,感觉公司对此功能进行了限制(我们是集团公司)
  • ¥15 救!ENVI5.6深度学习初始化模型报错怎么办?
  • ¥30 eclipse开启服务后,网页无法打开
  • ¥30 雷达辐射源信号参考模型
  • ¥15 html+css+js如何实现这样子的效果?
  • ¥15 STM32单片机自主设计
  • ¥15 如何在node.js中或者java中给wav格式的音频编码成sil格式呢
  • ¥15 不小心不正规的开发公司导致不给我们y码,
  • ¥15 我的代码无法在vc++中运行呀,错误很多