RequestError:验证失败的参数 - 缓冲无效

问题描述 投票:1回答:1

您好我有与node.js的MSSQL的错误,我必须插入包含为Base64文件在数据库的SQL Server 2014的字符串,但是当我插入下面的代码,我有以下错误:RequestError:验证失败参数“ IMMAGINE”。无效的缓冲区。我该如何解决呢?

async function Reg(IdCantiere, IdUtenteCreazione, Data, Immagine) {

  var ret = true;

  await sql.connect(DbConfig.config);

  try {
    var request = new sql.Request();
    request.input('IdCantiere', sql.Int, IdCantiere);
    request.input('IdUtenteCreazione', sql.Int, IdUtenteCreazione);
    request.input('Immagine', sql.VarBinary(sql.MAX), Immagine);
    request.input('Data', sql.VarChar, Data);
    var query = "insert into Rapporto(IdCantiere,IdUtenteCreazione,NumeroDocumento,Data,Immagine) values(@IDCantiere,@IdUtenteCreazione,( /* Carico il l'ultimo numero  del rappportino di un utente*/ SELECT top 1 NumeroDocumento from Rapporto where Rapporto.IdUtenteCreazione=@IdUtenteCreazione and YEAR(Rapporto.Data)=YEAR(GETDATE()) order by CAST(Rapporto.NumeroDocumento  as int) desc),@Data,@Immagine); SELECT SCOPE_IDENTITY() as valore;";
    var recordset = await request.query(query);
    request = new sql.Request();
    request.input('IdRapporto', sql.Int, recordset.recordset[0].valore);
    recordset = await request.query('Insert into RapportoMobile(IdRapporto) values(@IdRapporto);');
  } catch (err) {
    ret = false;
    console.log("error -> ", err);
  }
  await sql.close();
  return ret;

}
sql sql-server node.js mssql-jdbc
1个回答
2
投票

试图把一个加密值(作为字符串存储)到VARBINARY的时候我遇到了同样的问题。铸造作为缓冲解决了这个问题 - new Buffer(someStringValue)

  const pool = await db.dbConnector();  //Setup mssql connection pool
  const result = await pool.request()
      .input('MerchantId', mssql.Int, merchantId)
      .input('AppKey', mssql.VarChar, applicationKey)  
      .input('AppSecret', mssql.VarBinary, new Buffer(encryptedApplicationSecret))
      .execute('[Security].[Account_Save]');

道具feiiiiii的意见,把我在正确的道路上

© www.soinside.com 2019 - 2024. All rights reserved.