如何通过ant存储SQL选择查询数据作为名称值对

时间:2014-09-02 08:51:03

标签: sql ant

我正在使用ant脚本从dbms中选择数据。

<target name="change">
    <echo message="${DatabaseUrl}"/>
    <sql>  
        select query
    </sql>
    <loadfile srcfile="temp.properties" property="result"/>
    <echo message="${result}"/>
</target>

这个输出就像

 ServerName,HostName,Location
 Win@k8,DS,India
 Linux,DS1,India

我希望输出像

 ServerName=Win@k8
 HostName=DS
 Location=India

等...

这样我就可以将值存储在变量中以便进一步处理。

0 个答案:

没有答案