您好我是机器人框架的新手,我试图通过select语句获取数据库结果并存储到.txt文件中。
我能够连接到我的数据库并执行我的select语句,但是我的select语句的返回值是'NONE'。
Execute Sql String SELECT BTH_N FROM BAS_BERTH_APPLN_MASTER WHERE ABBR_VSL_M='APL';
关于如何解决select语句问题以及如何将该值存储在.txt文件中的任何想法?
谢谢。
答案 0 :(得分:0)
您使用的是SQL脚本吗? 如果没有,您可以使用查询关键字。 https://franz-see.github.io/Robotframework-Database-Library/api/0.5/DatabaseLibrary.html#Query
module.exports = {
friendlyName: 'Example helper that does three things',
description: '',
inputs: {},
exits: {},
fn: async function (inputs, exits) {
const doFirstThing = function () {
// do something
};
const doSecondThing = function () {
// do something
};
const doThirdThing = function () {
// do something
};
doFirstThing();
doSecondThing();
doThirdThing();
},
};
将结果存储在.txt文件中的解决方案:How to write a variable into a file?