0

我想从 nlog 获取值并将它们放入数据库中,但是当我使用当前代码运行我的应用程序时,它会引发异常并显示以下消息;

Must declare the scalar variable \"@MachineName\"."}

这是我的 nlog.config 文件,任何帮助将不胜感激 =]

<?xml version="1.0" encoding="utf-8" ?>
<nlog xmlns="http://www.nlog-project.org/schemas/NLog.xsd"
      xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" autoReload="true">

  <!-- 
  See http://nlog-project.org/wiki/Configuration_file 
  for information on customizing logging rules and outputs.
   -->

  <targets>
    <target xsi:type="Database"
      name="Database"
      dbProvider="sqlserver"
      useTransactions="true"
      connectionString="Data Source=AC-02\SQLEXPRESS;Initial Catalog=Modelfirst.Blogging;Integrated Security=True"
      keepConnection="true"
      commandText="INSERT INTO Logs (Machine_Name, Username, Logon_Time, Screensaver_On, Screensaver_Off, Logoff_Time, Program_Start) Values (@MachineName, @Username, @LogonTime, @Screensaver_On, @Screensaver_Off, @LogoffTime, @ProgramStart)"

            />

  </targets>



  <rules>
    <logger name="*" minlevel="Trace" writeTo="Database" />
  </rules>
</nlog>
4

2 回答 2

2

在您的命令文本中看起来像一个拼写错误的参数,Machine_Name并且@MachineName是不同的。

于 2013-06-19T15:48:42.523 回答
1

大概您需要添加<parameter layout="Layout" name="String" precision="Byte" scale="Byte" size="Integer"/>以声明所有参数的含义?

@MachineName 失败,因为它是第一个 1。

您需要在插入语句中为每个参数声明一个参数,并在布局状态中声明它应该是什么 nlog 变量。

所以:

<parameter layout="${machinename}" name="@MachineName" size="50"/><!-- repeated -->

这是数据库目标的文档。为每个参数添加一个如上所述的元素。

于 2013-06-19T16:01:04.383 回答