[CONJ-562] MariaDbClob Length Error Created: 2017-12-22 Updated: 2018-01-23 Resolved: 2018-01-23 |
|
| Status: | Closed |
| Project: | MariaDB Connector/J |
| Component/s: | Other |
| Affects Version/s: | 1.6.3 |
| Fix Version/s: | N/A |
| Type: | Bug | Priority: | Major |
| Reporter: | 정대현 | Assignee: | Diego Dupin |
| Resolution: | Not a Bug | Votes: | 0 |
| Labels: | None | ||
| Environment: |
mariaDB : 5.2 |
||
| Description |
|
Table insert Row (Size :1032) '); When you call the getClob function of the ResultSet object after performing a select query using JDBC, the last character "}" is omitted and the result is output. MariaDbClob.java The length () of the source is missing a value of 1. Please confirm. ----------------------------------------------------------------------------------------------------- MariaDbClob.java 소스중 length()에서 값이 1이 모자르게 나오고 있습니다. 확인 부탁 드립니다. |
| Comments |
| Comment by Diego Dupin [ 2017-12-22 ] | |||||
|
Hi,
backslash is the escape character. so having a backslash followed by a slash ('\/') mean having an escape character before a character that doesn't need to be escaped. so this escaped character is removed. if this backslash is intentional, it must be escaped '
Driver will then escape this backslash. |