-
I used the clipboard to paste the same SQL statement, and it pasted normally under vi editor, but under sqlplus there was an unexpected number at the end, I guess this number is the line number
Details
Steps to reproduce |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Most cmdline REPLs use NL as a command separator, thus cannot be fed from multiline commands directly. Most likely you'd have to resemble the command into one big line, or into smaller pieces. Yes the numbers look like sqlplus answers line input with a line number, but since you entered the lines "at once", the screen state gets scrambled and numbers are appended at the end. |
Beta Was this translation helpful? Give feedback.
Most cmdline REPLs use NL as a command separator, thus cannot be fed from multiline commands directly. Most likely you'd have to resemble the command into one big line, or into smaller pieces. Yes the numbers look like sqlplus answers line input with a line number, but since you entered the lines "at once", the screen state gets scrambled and numbers are appended at the end.
This is not an issue of the terminal (as you showed with vim), but how your app tries to interact with you. If anything, ask in sqlplus help forums.