0

構文エラーを出力する DBreport メディエーターに問題がありますが、SQL ステートメントにエラーが表示されません。

<sequence xmlns="http://ws.apache.org/ns/synapse" name="_dbcount">
   <dblookup>
      <connection>
         <pool>
            <password>1234</password>
            <user>root</user>
            <url>jdbc:mysql://localhost:3306/new_db</url>
            <driver>com.mysql.jdbc.Driver</driver>
         </pool>
      </connection>
      <statement>
         <sql>
            <![CDATA[            select * from consume where username= ? and id_api+ ?]]></sql>
            <parameter value="riccardo" type="VARCHAR" />
            <parameter value="1" type="INTEGER" />
            <result name="result_use" column="use" />
            <result name="result_user" column="username" />
         </statement>
      </dblookup>
      <dbreport>
         <connection>
            <pool>
               <password>1234</password>
               <user>root</user>
               <url>jdbc:mysql://localhost:3306/new_db</url>
               <driver>com.mysql.jdbc.Driver</driver>
               <property name="autocommit" value="false" />
            </pool>
         </connection>
         <statement>
            <sql>
               <![CDATA[UPDATE consume SET use=21 WHERE username='riccardo' AND id_api='1']]></sql>
            </statement>
         </dbreport>
         <log level="custom">
            <property xmlns:ns="http://org.apache.synapse/xsd" xmlns:ns3="http://org.apache.synapse/xsd" name="result for client" expression="get-property('result_user')" />
            <property xmlns:ns="http://org.apache.synapse/xsd" xmlns:ns3="http://org.apache.synapse/xsd" name="result for use" expression="get-property('result_use')" />
         </log>
      </sequence>

最初の DB ルックアップは正常に機能しますが、DBreport の 2 番目の SQL ステートメントは値を更新できません。

ERROR - DBReportMediator Error execuring insert statem
ent : UPDATE consume SET use='21' WHERE username='riccardo' AND id_api='1' again
st DataSource : jdbc:mysql://localhost:3306/new_db
com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: You have an error in
your SQL syntax; check the manual that corresponds to your MySQL server version
for the right syntax to use near 'use='21' WHERE username='riccardo' AND id_api=
'1'' at line 1
        at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)...

私のテーブルは次のとおりです。

消費 (int id、varchar ユーザー名、int id_api、int use) ユーザー (int id、varchar ユーザー名、varchar パスワード)

どうもありがとう

編集Mysql DBに書き込むときにDBREPORTおよびDBLOOKUPメディエーターに大きな問題があると思います。読み取りは問題ありませんが、更新と挿入は機能しません...間違っているかどうか教えてください

4

1 に答える 1

0

ヌビオ、

この問題は、DBReportメディエーターの問題が原因ではないと思います。報告されたスタックトレースとシーケンス構成を調べていると、列名として「use」が定義されていることがわかります。「use」という用語を使用してデータベース列を作成した方法がよくわかりません。これはMySQLキーワードであり、SQLクエリに列またはその他のユーザー定義属性としてキーワードがある場合は常にMySQLクエリコンパイラがSQLExceptionをスローする必要があるためです。 。「use」列の代わりにキーワード以外の名前を付けると、問題が解決します。

乾杯、プラバス

于 2012-09-07T17:37:25.777 に答える