Tagged Questions

0
votes
2answers
25 views

Using variables in an array passed to a def - Rails

I'm using the Google charts API to generate a pie chart in my Rails application. However, I'm having a problem passing local variables to the def in the helper. The def takes a 2 …
0
votes
6answers
162 views

Trouble with local variables in C#

I have a couple of variables that need to be assigned inside a for loop. Apparently, when the loop exits, C# ignores whatever happened in there, and the variables are returned to t …
0
votes
1answer
67 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 VARC …
0
votes
1answer
225 views

Rails partial locals not persisting when sent to another partial as its own local

I render a partial like so: <%= render :partial => 'widgets/some_partial, :locals => {:foo => 'bar'} %> So inside of _some_partial.html.erb I render two more part …
0
votes
3answers
187 views

Programmatically get values of variables local to function in javascript?

Given: function foo(){ var bar = "quux"; console.log(/*mystery code here*/); } I'm looking for code that when inserted into the comment would yield the value of bar. By way …
1
vote
2answers
190 views

Should you only use local variables in a partial?

Using local variables seems advisable in a partial that could be used application-wide to avoid dependencies across the application. But within a single controller it seems accep …
2
votes
2answers
140 views

Can someone explain these few lines of MSIL? Why does it move a value off the evaluation stack to a local variable, only to move it back immediately and return it?

The following MSIL code loads a single argument (a string), calls a method, which returns bool, and then returns that bool value. What I don't understand is why it calls stloc.0 t …
6
votes
4answers
290 views

Local variables with Delegates

This is clearly not appears like it wouldn't be a best practice, but can someone explain why or how this works. Or recommend a good book to learn more. //The constructor public Pa …