Make sure that the size of the target variable is same as the size of the assign value.
Examples:
-- Correct Way.
fstrVar1 VarChar2 (5);
fstrVar2 VarChar2 (5);
fstrVar2 := ‘12345’;
fstrVar1 := fstrVar2;
-- Incorrect Way.
fstrVar1 VarChar2 (4);
fstrVar2 VarChar2 (5);
fstrVar2 := ‘123456’; -- Error prompted here because fstrVar2 only accept 5 characters.
-- If fstrVar2 is changed to accept 6 characters.
fstrVar1 := fstrVar2; -- Error prompted here because fstrVar1 only accept 4 characters.
Programming Explorer : This is the place that I would like to share with you about my IT knowledge and experience. Some of the articles are copied from others in the internet. Some are originally come from my findings.
Subscribe to:
Post Comments (Atom)
-
Finally Windows 7 shows its face, but only Beta version now. The latest version of Microsoft's Windows operating system became popular s...
-
If your environment is something like below: Windows operating system, either 10 or 11 Python 3.13 You are trying to install pymssql , and Y...
-
You may refer to the sample codes below from us. We use Windows platform as an example: import webbrowser def main(): fUrl: str = 'h...
No comments:
Post a Comment