When using Oracle database for fuzzy query, The console error is shown in the following figure:The reason is that I typed too fast and the grammar was wrong. The correct way to write it is pd.code like concat(concat('%',#{keyword}),'%') java.sql.SQLSyntaxErrorException: ORA-00909: invalid number of parameters I encountered this exception when using MyBatis for multi-parameter fuzzy query. I looked at the print log and found that the exception occurred after pre-compilation and when inserting actual parameters.
Exception message: The number of parameters is invalid. Checked the SQL statement select role_id, role_name, note from t_role where role_name like concat('%', ?, '%') and note like concat('%', ?, '%') I found that the problem occurred in concat. concat is a function that connects two strings. Here, three are connected. Change the SQL to two nested concats. <select id="getRolesByIdAndNote" parameterType="map" resultType="role"> select role_id, role_name, note from t_role where role_name like concat(concat('%', #{roleName}), '%') and note like concat(concat('%', #{note}), '%') </select> SummarizeThe operation was successful! The above is my personal experience. I hope it can give you a reference. I also hope that you will support 123WORDPRESS.COM! You may also be interested in:
|
<<: Docker builds Redis5.0 and mounts data
>>: Detailed explanation of flex layout in CSS
1. Create a database 2. Create a table 1. Create ...
What is a web page? The page displayed after the ...
Table of contents Error message Cause Error demon...
Table of contents 1. Example: this can directly g...
This article introduces an example of how CSS3 ca...
Table of contents Index Type Index structure Nonc...
Table of contents App Update Process Rough flow c...
1: nginx server solution, modify the .conf config...
Note: This table is quoted from the W3School tuto...
The effect shows that two browsers simulate each ...
p>Manually start in "Services" and i...
This article shares the installation and configur...
Brief Description This is a CSS3 cool 3D cube pre...
This article shares the specific code for JavaScr...
wangEditor is a web rich text editor developed ba...