Remove extra backquote
This commit is contained in:
		
							parent
							
								
									be416ef9c4
								
							
						
					
					
						commit
						e57d8e1e60
					
				| 
						 | 
					@ -4149,10 +4149,10 @@ used for both stored procedure calls and for queries using the `SqlQuery` and it
 | 
				
			||||||
subclasses covered in the following section.
 | 
					subclasses covered in the following section.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
The second line with the `SqlOutParameter` declares an `out` parameter to be used in the
 | 
					The second line with the `SqlOutParameter` declares an `out` parameter to be used in the
 | 
				
			||||||
stored procedure call. There is also an `SqlInOutParameter` for `I` `nOut` parameters,
 | 
					stored procedure call. There is also an `SqlInOutParameter` for `InOut` parameters,
 | 
				
			||||||
parameters that provide an `in` value to the procedure and that also return a value.
 | 
					parameters that provide an `in` value to the procedure and that also return a value.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
For `i` `n` parameters, in addition to the name and the SQL type, you can specify a
 | 
					For `in` parameters, in addition to the name and the SQL type, you can specify a
 | 
				
			||||||
scale for numeric data or a type name for custom database types. For `out` parameters
 | 
					scale for numeric data or a type name for custom database types. For `out` parameters
 | 
				
			||||||
you can provide a `RowMapper` to handle mapping of rows returned from a REF cursor.
 | 
					you can provide a `RowMapper` to handle mapping of rows returned from a REF cursor.
 | 
				
			||||||
Another option is to specify an `SqlReturnType` that enables you to define customized
 | 
					Another option is to specify an `SqlReturnType` that enables you to define customized
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
		Reference in New Issue