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 逻辑谓词和消解原理的运用
  • ¥15 请求分析基于spring boot+vue的前后端分离的项目
  • ¥15 三菱伺服电机按启动按钮有使能但不动作
  • ¥15 js,页面2返回页面1时定位进入的设备
  • ¥200 关于#c++#的问题,请各位专家解答!网站的邀请码
  • ¥50 导入文件到网吧的电脑并且在重启之后不会被恢复
  • ¥15 (希望可以解决问题)ma和mb文件无法正常打开,打开后是空白,但是有正常内存占用,但可以在打开Maya应用程序后打开场景ma和mb格式。
  • ¥20 ML307A在使用AT命令连接EMQX平台的MQTT时被拒绝
  • ¥20 腾讯企业邮箱邮件可以恢复么
  • ¥15 有人知道怎么将自己的迁移策略布到edgecloudsim上使用吗?