Tagged Questions
3
votes
3answers
163 views
JavaScript: How to use dynamic local variables
How would I reference a dynamic local variable? I know how to accomplish this with a global variable scope; for example.
myPet = "dog";
alert(window["myPet"]); // Alerts "dog"
How would I ...
2
votes
1answer
154 views
How to dynamically define a class method which will refer to a local variable outside?
class C
end
var = "I am a local var outside"
C.class_eval do
def self.a_class_method
puts var
end
# I know, this is not correct, because the 'def' created a new scope;
# I am ...
1
vote
1answer
1k views
Dynamic MySQL with local variables
How can I use dynamic SQL statements in MySQL database and without using session variables?
Right now I have such a code (in MySQL stored procedure):
(...)
DECLARE TableName VARCHAR(32);
SET ...