Tagged Questions
0
votes
1answer
142 views
How do I map dynamically created columns in SSRS 2008?
I wrote a stored procedure, whose results include 4 columns whose names will change over time.
They correspond to Week numbers. So one column will be '1', another will be '2' and so on.
They will ...
0
votes
2answers
322 views
Javascript: Dynamic function names
How to create a function with a dynamic name? Something like:
function create_function(name){
new Function(name, 'console.log("hello world")');
}
create_function('example');
example(); // --> ...
0
votes
1answer
570 views
cakephp : dynamic form fields
I have just started with cakephp so bare with me :) ...
I have a form that has all the fields pulled dynamic from a database table 'FieldNames' :
ID | FieldName
--------------
11 | username
22 | ...
2
votes
3answers
66 views
“Variable” Variablenames in C
I think what I am looking for is actually not possible in C, but maybe some has an idea how to work around it:
I need to process some input data. This data is given in an int with gives the number of ...
4
votes
6answers
8k views
Create variable names using a loop in Java?
first time poster, long time reader so be gentle with me :)
See the following code which works to generate me timestamps for the beginning and end of every month in a financial year.
int year = ...
1
vote
1answer
630 views
MySQL use column names from another table
I'm wondering if it is possible to return a result set with column names which are stored in a separate table. Is this possible or do I need a stored_procedure with variables. See link for mysql_dump ...
0
votes
9answers
11k views
Is there away to generate Variables' names dynamically in Java?
Let's say that I need to generate variables to hold some input from the user (I don't know how many they are). Without using Array, ArrayList (and other kind of lists and maps) can my code generate ...