Microsoft
Software
Hardware
Network
Question : using same variable name multiple times
generally, is it safe to keep reusing same variable other contexts.
for example
declare abc number;
begin
........
code #1
end;
declare abc number;
begin
........
code #2
end;
will the end of the first block refresh/clear out the variable abc and keep it usable for the second round? is this good programming practice?
thanks
Answer : using same variable name multiple times
Hi,
Yes, the two variables are in different blocks, so they are different.
Regards,
Franck.
Random Solutions
What is the proper DNS settings for ...
PL/SQL Performance
VBScript: Pulling lastLogonTimestamp
Find position of second to last period in a string
Running .exe in a logon script
Windows Mobile ActiveSync Calendar Items do not sync
How do I upgrade firmware on Netgear wg103
jQuery: Add div at beginning of other div
send mail to undisclosed receipent in lotus notes
How do I invoke a Java script for onkeypress for a dynamically added control?