从mysql google app maker获取datetime结果集

jqjz2hbq  于 2021-06-20  发布在  Mysql
关注(0)|答案(1)|浏览(265)

大家早上好;我正在尝试从mysql获取datetime字段值,下面是google app maker服务器脚本中的一句话:

calcRecord.fct_f_FechaRecepcion=results.getDate('dt_Alta');

但是在console.log中返回null,没有异常。我需要从mysql获取一些日期,我不知道怎么做。有什么能帮我的吗?谢谢

pjngdqdw

pjngdqdw1#

在mysql中强制转换datetime字段之后,我遇到了一个可能的解决方案:

Select..... cast(******.dt_Alta as char) As dt_Alta from .....

我的日期格式模式是2019-12-05 00:00:00。结果是:

if (results.getString(8)!==null){
    var str,str1='';
    var t,h=[];
    var fecha= new Date();
    str=results.getString(8);
    str1=str.split(" ");
    t= str1[0].split("-");
    h=str1[1].split(":");
    fecha= new Date(t[0],t[1]-1,t[2],h[0],h[1],h[2]);
    calcRecord.fct_f_FechaRecepcion=fecha;
  }

“t”和“h”的索引是日期的格式。getstring(8)是dtu alta索引列。当做

相关问题