active questions tagged variable - Stack Overflow most recent 30 from stackoverflow.com 2009-12-03T01:26:45Z http://stackoverflow.com/feeds/tag/variable http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1835088/how-to-convert-variable-name-to-string-in-c-net 0 How to convert variable name to string in c#.net? Jronny 2009-12-02T19:03:03Z 2009-12-02T23:40:03Z <pre><code>public new Dictionary&lt;string, string&gt; Attributes { get; set; } public string StringAttributes = string.Empty; public int? MaxLength { get; set; } public int? Size { get; set; } public int? Width { get; set; } public int? Height { get; set; } protected override void OnInit(EventArgs e) { Attributes = new Dictionary&lt;string, string&gt;(); Attributes.Add("MaxLength", MaxLength.ToString()); Attributes.Add("Size", Size.ToString()); Attributes.Add("Width", Width.ToString()); Attributes.Add("Height", Height.ToString()); base.OnInit(e); } protected override void OnPreRender(EventArgs e) { if (Attributes != null) { StringBuilder attributes = new StringBuilder(); foreach (var item in Attributes) { if (!string.IsNullOrWhiteSpace(item.Value)) { attributes.Append(item.Key + "=\"" + item.Value + "\" "); } } StringAttributes = attributes.ToString(); } } </code></pre> <p>The problem here is, instead of using <code>Attributes.Add("MaxLength", MaxLength.ToString());</code> and repeat the same process for other properties, could we not just make a function that is also able to add values to the dictionary, where the keys to be added are their variable names? Say, </p> <pre><code>public void addAttribute(object variable){ Attributes = new Dictionary&lt;string, string&gt;(); Attributes.Add(variable.Name, variable.Value); }... </code></pre> <p>I guess this is also possible to do with reflection, getting all the nullable properties and looping through them then adding each to the dictionary... But for as long as there are any other ways, we would not stick to reflection.</p> <p>But if reflection is the only choice, then another problem now would be how to get the nullable properties of the class... </p> <p>Any help would be greatly appreciated. Thank you.</p> http://stackoverflow.com/questions/1820216/is-a-variable-binding-to-a-collection-item-possible 1 Is a variable binding to a collection item possible Jan 2009-11-30T14:42:16Z 2009-12-02T11:50:47Z <p>Hello everyone,</p> <p>I'm trying to bind to an item inside a collection but the index for that item needs to be "variable". Take the following pseudo syntax for example:</p> <pre><code>&lt;TextBlock Text="{Binding Fields[{Binding Pos}]}" /&gt; </code></pre> <p>Is something like this possible? If my property Pos is 1 it should bind to the first item out of the collection "Fields" and if my Pos is 3 it should bind to the third item in the collection. I simplified my problem to this situation...</p> <p>Is somethink like this doable and how? Thank you in advance. Jan</p> http://stackoverflow.com/questions/1829922/concatenating-variable-names-in-c 2 Concatenating Variable Names in C? ttreat31 2009-12-02T00:25:26Z 2009-12-02T01:01:47Z <p>Hello,</p> <p>Is it possible to concatenate variable names in C? Specifically, I have a struct that contains 6 similar variables in it called class1, class2, class3, etc.</p> <p>I want to run through a for loop to assign each variable a value, but I can't see how to do it without somehow concatenating the variable name with the value of the for loop counter.</p> <p>How else could I do this?</p> <p>Thanks.</p> http://stackoverflow.com/questions/1824095/variable-assignment-in-javascript 0 Variable assignment in JavaScript tibin mathew 2009-12-01T05:03:06Z 2009-12-01T16:07:53Z <p>hi Friends,</p> <p>I have a js function</p> <p>I want to assign a variable to a variable</p> <p>my variable is in a forloop</p> <p>I have two variables</p> <p>ie;</p> <pre><code>var spcd_1= "http://www.colbridge.com"; var spcd_2 = "http://www.google.com"; </code></pre> <p>below is my js function</p> <pre><code>function openNewWindow(spcd) { //alert("hello"); var tt = spcd; alert(tt); var i=0; var spcd_1= "http://www.colbridge.com"; var spcd_2 = "http://www.google.com"; for(i=1;i&lt;3;i++) { var theurl="'spcd_'+i"; popupWin = window.open(theurl, '_blank', 'menubar, toolbar, location, directories, status, scrollbars, resizable, dependent, width=640, height=480, left=0, top=0') } } </code></pre> <p>my problem is here</p> <pre><code>var theurl=spcd_+i; </code></pre> <p>I want to change <code>theurl</code> value to <code>spcd_1</code> and <code>spcd_2</code></p> <p>how to assign this correctly in the for loop</p> <pre><code>var theurl=spcd_+i; </code></pre> <p>can any one show me the correct method.</p> <p>Thanks</p> http://stackoverflow.com/questions/1819078/knowing-the-availability-of-variables-in-crontab 0 Knowing the availability of variables in crontab Sachin Chourasiya 2009-11-30T10:46:13Z 2009-11-30T10:56:56Z <p>What all variables BY DEFAULT are available if a script is executed by the crontab on UNIX Are .profile and oracle.env executed when the cron job is executed?</p> http://stackoverflow.com/questions/1783365/log4j-runtime-variable-substitution 0 Log4J – Runtime variable substitution Adrian 2009-11-23T14:15:47Z 2009-11-27T14:12:11Z <p><a href="http://logging.apache.org/log4j/1.2/index.html" rel="nofollow">Log4J</a> appears to have an annoying restriction – at runtime, variable substitution does not appear to work.</p> <p>In this example</p> <p>File: Log4j.properties</p> <blockquote> <p>file_pattern=%d{ISO8601} %-5p %m%n</p> <p>log4j.rootLogger=DEBUG, FileAppender</p> <p>log4j.appender.FileAppender=org.apache.log4j.FileAppender log4j.appender.FileAppender.layout=org.apache.log4j.PatternLayout log4j.appender.FileAppender.layout.ConversionPattern=${file_pattern} log4j.appender.FileAppender.File=log4jtest1.log</p> <p>log4j.appender.FileAppender.Threshold=ERROR</p> </blockquote> <p>The FileAppender configured in the log4j.properties file produces the correct output:</p> <p>File: log4jtest1.log</p> <blockquote> <p>ERROR Sample error message FATAL Sample fatal message</p> </blockquote> <p>If I attempt to create a FileAppender at runtime</p> <pre><code>import org.apache.log4j.FileAppender; import org.apache.log4j.Level; import org.apache.log4j.Logger; import org.apache.log4j.PatternLayout; public class Main { static final Logger logger = Logger.getLogger(Main.class); public static void main(String[] args) throws Exception { FileAppender appender = new FileAppender(); appender.setFile("log4test2.log"); PatternLayout pl = new PatternLayout("${file_pattern}"); appender.setLayout(pl); appender.setName("log4jtest2"); appender.setThreshold(Level.ERROR); appender.activateOptions(); logger.addAppender(appender); logger.trace("Sample trace message"); logger.debug("Sample debug message"); logger.info("Sample info message"); logger.warn("Sample warn message"); logger.error("Sample error message"); logger.fatal("Sample fatal message"); } } </code></pre> <p>Te output is </p> <p>File: log4jtest2.log</p> <blockquote> <p>${file_pattern}${file_pattern}</p> </blockquote> <p>Can anyone explain what is the problem and how can it be fixed?</p> <p>Related question: Can an application access the ResourceBundle in order to read variables intended to be substituted?</p> http://stackoverflow.com/questions/369758/how-to-trim-whitespace-from-bash-variable 3 How to trim whitespace from bash variable? too much php 2008-12-15T21:24:01Z 2009-11-27T09:49:36Z <p>I have a shell script with this code:</p> <pre><code>var=`hg st -R "$path"` if [ -n "$var" ]; then echo $var fi </code></pre> <p>But the conditional code always executes because <code>hg st</code> always prints at least one newline character.</p> <ul> <li>Is there a simple way to strip whitespace from <code>$var</code> (like <code>trim()</code> in php)?</li> </ul> <p>or</p> <ul> <li>Is there a standard way of dealing with this issue?</li> </ul> <p>I could use <code>sed</code> or <code>awk</code>, but I'd like to think there is a more elegant solution to this problem.</p> http://stackoverflow.com/questions/1804423/whats-the-difference-between-var-x-and-var-x-in-jquery 0 What's the difference between ‘var $x’ and ‘var x’ in jQuery? [closed] Alexsander Akers 2009-11-26T15:45:52Z 2009-11-26T15:54:33Z <blockquote> <p><strong>Possible Duplicate:</strong><br> <a href="http://stackoverflow.com/questions/205853/why-would-a-javascript-variable-start-with-a-dollar-sign">Why would a javascript variable start with a dollar sign?</a> </p> </blockquote> <p>What's the difference between ‘var $x’ and ‘var x’ in jQuery?</p> http://stackoverflow.com/questions/716399/c-how-do-you-get-a-variables-name-as-it-was-physically-typed-in-its-declarati 2 c# - How do you get a variable's name as it was physically typed in its declaration? Petras 2009-04-04T02:51:55Z 2009-11-24T10:19:01Z <p>The class below contains the field city.</p> <p>I need to dynamically determine the field's name as it is typed in the class declaration i.e. I need to get the string "city" from an instance of the object city.</p> <p>I have tried to do this by examining its Type in DoSomething() but can't find it when examining the contents of the Type in the debugger.</p> <p>Is it possible?</p> <pre><code>public class Person { public string city = "New York"; public Person() { } public void DoSomething() { Type t = city.GetType(); string field_name = t.SomeUnkownFunction(); //would return the string "city" if it existed! } } </code></pre> <p>Some people in their answers below have asked me why I want to do this. Here's why.</p> <p>In my real world situation, there is a custom attribute above city.</p> <pre><code>[MyCustomAttribute("param1", "param2", etc)] public string city = "New York"; </code></pre> <p>I need this attribute in other code. To get the attribute, I use reflection. And in the reflection code I need to type the string "city"</p> <pre><code>MyCustomAttribute attr; Type t = typeof(Person); foreach (FieldInfo field in t.GetFields()) { if (field.Name == "city") { //do stuff when we find the field that has the attribute we need } } </code></pre> <p>Now this isn't type safe. If I changed the variable "city" to "workCity" in my field declaration in Person this line would fail unless I knew to update the string</p> <pre><code>if (field.Name == "workCity") //I have to make this change in another file for this to still work, yuk! { } </code></pre> <p>So I am trying to find some way to pass the string to this code without physically typing it.</p> <p>Yes, I could declare it as a string constant in Person (or something like that) but that would still be typing it twice.</p> <p>Phew! That was tough to explain!!</p> <p><strong>Thanks</strong></p> <p>Thanks to all who answered this * a lot*. It sent me on a new path to better understand lambda expressions. And it created a new question.</p> http://stackoverflow.com/questions/1718714/c-passing-value-of-a-list-element-to-update-local-variable 0 C# Passing value of a list element to update local variable Ragepotato 2009-11-11T23:04:11Z 2009-11-23T18:22:42Z <p>I have a few local variables and I want to divide them all divide them all by the same number.</p> <pre><code>decimal a = 0; decimal b = 0; decimal c = 0; ... decimal n = 0; decimal divisor = 0; &lt;perform calculations to give all variables meaningful values&gt; divide each decimal (a - n) by divisor then assign value </code></pre> <p>Beside dividing and assigning every variable with:</p> <pre><code>a = a / divisor; b = b / divisor; and so on... </code></pre> <p>Is there a faster way? I'm thinking something along the lines of putting them all in a collection and iterating over it...</p> <p>I don't need the values in a list, I need the variables to contain them. I was thinking of something along the lines using a list of pointers, iterating over it and setting the values that way.</p> http://stackoverflow.com/questions/1781780/php-variable-scope 1 PHP Variable Scope Dylan 2009-11-23T08:28:05Z 2009-11-23T08:33:05Z <p>Is there a way to declare a variable so it is available in all functions. Basically I want to call: Global $varName; automatically for every function. And no, I can't use a constant.</p> <p>I don't think its possible but wanted to ask anyway. Thanks! :D</p> http://stackoverflow.com/questions/1780644/populate-a-request-variable-value-from-database-record-how 0 populate a $_REQUEST variable value from database record - how? KelsoField 2009-11-23T01:05:30Z 2009-11-23T02:33:11Z <p>I am trying to get the values posted from a form select. The select name is dynamic, meaning that the name value is defined by a database record.</p> <p>In the form processing script, I want to call back that value via a <code>$_REQUEST</code>.</p> <p>I cannot know in advance what the value of the <code>$_request</code> will be (eg, <code>$var=$_REQUEST['foo'];</code> ) but I do know that the value is one originitating from a database table. Knowing this I create a database call, then use a <code>foreach</code> to loop through the possible values.</p> <p>I want to create a <code>$_request</code> for each pass.</p> <p>eg..</p> <pre><code>$prod_prop_name=mysql_query("SELECT * FROM `dshop_options_name`"); $prod_prop_name_array= array(); while($data9=mysql_fetch_array($prod_prop_name)) { $prod_prop_name_array[]=$data9; } foreach($prod_prop_name_array as $rowNum =&gt; $data9){ $option_id=$data9[0]; $option_name=$data9[1]; echo"$option_name"; if($option_name==""){} else{ $varnval=$_REQUEST[$option_name]; // this is my try at getting the var value echo "$varnval"; // this is the output test } } </code></pre> <p>Problem I am having is that on the local server, I get a value, but on the webserver I get none. You can see I am using an <code>echo</code> to see what happens. <code>$varnval</code></p> <p>Can anyone suggest a workaround for this issue?</p> <p>Many Thanks</p> <p>KF</p> http://stackoverflow.com/questions/1777678/php-if-statement-using-post-variable-doesnt-seem-to-work-why 1 PHP if-statement using $_POST variable doesn't seem to work. Why? brilliant 2009-11-22T02:55:40Z 2009-11-22T03:41:27Z <p>On one PHP server I have two files. One file (the name is "first.php") contains this code:</p> <pre><code>&lt;html&gt; &lt;head&gt; &lt;title&gt;First Page&lt;/title&gt; &lt;/head&gt; &lt;body&gt; Please enter your password and age: &lt;form action="pass.php" method="post"&gt; Name: &lt;input type="text" name="fname" /&gt; Age: &lt;input type="text" name="age" /&gt; &lt;input type="submit" /&gt; &lt;/form&gt; &lt;/body&gt; &lt;/html&gt; </code></pre> <p>The other file ("pass.php") contains this code:</p> <pre><code>&lt;html&gt; &lt;head&gt; &lt;title&gt;Secon Page&lt;/title&gt; &lt;/head&gt; &lt;body&gt; &lt;?php if ($fname=="Jack") echo "You are Jack!"; else echo "You are not Jack!"; ?&gt; &lt;/body&gt; &lt;/html&gt; </code></pre> <p>As far as I understand, if a user enters "Jack" in the first page, than the second page should be displayed with "You are Jack!" line, but it doesn't happen. Why is it so? </p> http://stackoverflow.com/questions/1775344/php-fill-an-array-with-numbers 0 PHP: fill an array with numbers tarnfeld 2009-11-21T12:25:15Z 2009-11-21T13:50:08Z <p>If i have a variable <code>$num = 50</code> how can i put numbers 1-50 into an array? (50 is an example.. i wont know how many questions)</p> http://stackoverflow.com/questions/1769573/javascript-http-request-queue-within-object-variable-initialization-doesnt-wor 0 Javascript HTTP Request Queue within object variable - initialization doesn't work dforce 2009-11-20T10:23:15Z 2009-11-20T12:39:27Z <p>Hi folks,</p> <p>I got the following Request Queue implementation from this blog: </p> <p><a href="http://dsgdev.wordpress.com/2006/10/28/building-a-javascript-http-request-queue/" rel="nofollow">http://dsgdev.wordpress.com/2006/10/28/building-a-javascript-http-request-queue/</a></p> <p>and want to wrap it with a object variable. Unfortunately the variable initialization inside doesn't work.</p> <p>Hope someone can help me with this stuff. Thanks in advance</p> <pre> var requestQueue = { inCall : false, // VARIABLE TO TRACK IF WE ARE CURRENTLY IN A CALL callToArray : new Array(), // QUEUE FOR CALLS returnToArray : new Array(), // QUEUE FOR FUNCTION TO EXECUTE WHEN CALL COMPLETE reqMethodArray : new Array(), // QUEUE FOR REQUEST METHOD createRequestObject : function(){ var reqObj; var browser = navigator.appName; if(browser == "Microsoft Internet Explorer"){ reqObj = new ActiveXObject("Microsoft.XMLHTTP"); isIE = true; }else{ reqObj = new XMLHttpRequest(); } return reqObj; }, sendCall : function(whereTo, returnTo, reqMethod){ // GET THE NEXT ARRAY ITEM AND REMOVE FROM THE ARRAY this.callToArray.push(whereTo); this.returnToArray.push(returnTo); if (reqMethod != "GET" || reqMethod != "POST") { reqMethod = "GET"; } this.reqMethodArray.push(reqMethod); }, callQueue : function(){ // CHECK THE QUEUE AND SEND THE NEXT CALL IN LINE if(!this.inCall && this.callToArray.length > 0){ // DO WE HAVE ANYTHING IN THE QUEUE? if(this.callToArray.length > 0){ // WE DO, SO GET THE FIRST ITEM IN THE CALL ARRAY AND REMOVE IT whereTo = this.callToArray.shift(); returnTo = this.returnToArray.shift(); reqMethod = this.reqMethodArray.shift(); // SEND THAT CALL this.doCall(whereTo, returnTo, reqMethod); }else{ // UPDATE DEBUG QUEUE } }else{ // UPDATE DEBUG QUEUE } }, doCall : function(whereTo, returnTo){ this.inCall = true; var http = this.createRequestObject(); http.open('get', whereTo); // DO WE HAVE A FUNCTION TO CALL ONCE CALL IS COMPLETED? if(returnTo.length > 0){ eval("http.onreadystatechange = " + returnTo); } // SEND CALL http.send(null); } }; setInterval(requestQueue.callQueue, 100); </pre> http://stackoverflow.com/questions/1758576/multiple-left-hand-assignment-with-javascript 0 Multiple left-hand assignment with JavaScript David Calhoun 2009-11-18T19:48:37Z 2009-11-18T23:58:42Z <pre><code>var var1 = 1, var2 = 1, var3 = 1; </code></pre> <p>This is equivalent to this:</p> <pre><code>var var1 = var2 = var3 = 1; </code></pre> <p>I'm fairly certain this is the order the variables are defined: var3, var2, var1, which would be equivalent to this:</p> <pre><code>var var3 = 1, var2 = var3, var1 = var2; </code></pre> <p>Is there any way to confirm this in JavaScript? Using some profiler possibly?</p> http://stackoverflow.com/questions/1739800/variables-set-during-getjson-function-only-accessible-within-function 1 Variables set during $.getJSON function only accessible within function Mega Matt 2009-11-16T02:49:47Z 2009-11-18T08:06:13Z <p>This may be more of a scoping question. I'm trying to set a JSON object within a $.getJSON function, but I need to be able to use that object outside of the callback.</p> <pre><code>var jsonIssues = {}; // declare json variable $.getJSON("url", function(data) { jsonIssues = data.Issues; }); // jsonIssues not accessible here </code></pre> <p>A similar question like this one was asked in another post, and the consensus was that anything I need to do with the JSON objects needs to be done within the callback function, and cannot be accessed anywhere else. Is there really no way that I can continue to access/manipulate that JSON object outside of the $.getJSON callback? What about returning the variable, or setting a global?</p> <p>I'd appreciate any help. This just doesn't seem right...</p> <p><strong>UPDATE:</strong></p> <p>Tried setting the $.ajax() async setting to false, and running through the same code, with no luck. Code I tried is below:</p> <pre><code>var jsonIssues = {}; // declare json variable $.ajax({ async: false }); $.getJSON("url", function(data) { jsonIssues = data.Issues; }); // jsonIssues still not accessible here </code></pre> <p>Also, I've had a couple responses that a global variable should work fine. I should clarify that all of this code is within <code>$(document).ready(function() {</code>. To set a global variable, should I just declare it before the document.ready? As such:</p> <pre><code>var jsonIssues = {}; $(document).ready(function() { var jsonIssues = {}; // declare json variable $.getJSON("url", function(data) { jsonIssues = data.Issues; }); // now accessible? } </code></pre> <p>I was under the impression that that a variable declared within document.ready should be "globally" accessible and modifiable within any part of document.ready, including subfunctions like the $.getJSON callback function. I may need to read up on javascript variable scoping, but there doesn't seem to be an easy to achieve what I'm going for. Thanks for all the responses.</p> <p><strong>UPDATE #2:</strong> Per comments given to answers below, I did use $.ajax <em>instead of</em> .getJSON, and achieved the results I wanted. Code is below:</p> <pre><code>var jsonIssues = {}; $.ajax({ url: "url", async: false, dataType: 'json', success: function(data) { jsonIssues = data.Issues; } }); // jsonIssues accessible here -- good!! </code></pre> <p>Couple follow-up comments to my answers (and I appreciate them all). My purpose in doing this is to load a JSON object initially with a list of Issues that the user can then remove from, and save off. But this is done via subsequent interactions on the page, and I cannot foresee what the user will want to do with the JSON object <em>within</em> the callback. Hence the need to make it accessible once the callback complete. Does anyone see a flaw in my logic here? Seriously, because there may be something I'm not seeing...</p> <p>Also, I was reading through the .ajax() jQuery documentation, and it says that setting async to false "Loads data synchronously. Blocks the browser while the requests is active. It is better to block user interaction by other means when synchronization is necessary."</p> <p>Does anyone have an idea how I should be blocking user interaction while this is going on? Why is it such a concern? Thanks again for all the responses.</p> http://stackoverflow.com/questions/1747254/c-style-variable-initialization-in-php 2 C-style Variable initialization in PHP unknown (google) 2009-11-17T07:56:48Z 2009-11-17T09:38:40Z <p>Is there such a thing as local, private, static and public variables in PHP? If so, can you give samples of each and how their scope is demonstrated inside and outside the class and inside functions?</p> http://stackoverflow.com/questions/1735608/php-pregreplace-text-variable 0 PHP preg_replace text variable David 2009-11-14T21:11:17Z 2009-11-14T21:22:35Z <p>I want to echo a string with the variable inside including the ($) like so:</p> <pre><code>echo "$string"; </code></pre> <p>I dont want it to echo the variable for string, I want it to echo '$string' itself, and not the contents of a variable. I know I can do this by adding a '\' in front of the ($), but I want to use preg_replace to do it. I tried this and it doesnt work:</p> <pre><code>$new = preg_replace("/\$/","\\$",$text); </code></pre> http://stackoverflow.com/questions/1734178/ireport-case-in-variable 0 IReport Case in Variable Maliheh Shariat 2009-11-14T13:02:50Z 2009-11-14T16:02:51Z <p>I write this code in one variable in the IReport : </p> <pre><code> $F{wbsWbkRef.wbkStdRef.stdBlRtntp.blCode} != null ? ReportUtil.getFirstEntity($P{JPA_ENTITY_MANAGER}, "SELECT "+ "CASE WHEN std.stdBlRtntp.blCode IN ('UNIVGRANT' , 'BEHYAR','TEACHER','GRANTED','EXTGRANTED','EXTGRANTED') THEN "+ "DECODE (std.stdBlAcctp.blCode , 'UNIVGRANT' ,'داخل','BEHYAR','داخل','TEACHER','داخل','GRANTED','داخل','EXTGRANTED','خارج','EXTGRANTED','ترددي','غير بورس') "+ "END AS SCHOLARSHIPTITLE "+ "FROM Student std "+ "WHERE std.stdId=:stdId ", "stdId="+ $F{wbsWbkRef.wbkStdRef.stdId}, "stdId=java.math.BigDecimal") : null </code></pre> <p>, but I get this error :</p> <pre><code>Caused by: java.lang.IllegalStateException: No data type for node: org.hibernate.hql.ast.tree.CaseNode \-[CASE] CaseNode: 'CASE' \-[WHEN] SqlNode: 'WHEN' +-[IN] InLogicOperatorNode: 'in' | +-[DOT] DotNode: 'blookup1_.BL_CODE' {propertyName=blCode,dereferenceType=4,propertyPath=blCode,path=std.stdBlRtntp.blCode,tableA p1_,className=com.ito.lms.persistence.BLookup,classAlias=null} | | +-[DOT] DotNode: 'student0_.STD_BL_RTNTP' {propertyName=stdBlRtntp,dereferenceType=1,propertyPath=stdBlRtntp,path=std.stdBlRtn as=blookup1_,className=com.ito.lms.persistence.BLookup,classAlias=null} | | | +-[ALIAS_REF] IdentNode: 'student0_.STD_ID' {alias=std, className=com.ito.lms.persistence.Student, tableAlias=student0_} | | | \-[IDENT] IdentNode: 'stdBlRtntp' {originalText=stdBlRtntp} | | \-[IDENT] IdentNode: 'blCode' {originalText=blCode} | \-[IN_LIST] SqlNode: 'inList' | +-[QUOTED_STRING] LiteralNode: ''UNIVGRANT'' | +-[QUOTED_STRING] LiteralNode: ''BEHYAR'' | +-[QUOTED_STRING] LiteralNode: ''TEACHER'' | +-[QUOTED_STRING] LiteralNode: ''GRANTED'' | +-[QUOTED_STRING] LiteralNode: ''EXTGRANTED'' | \-[QUOTED_STRING] LiteralNode: ''EXTGRANTED'' \-[METHOD_CALL] MethodNode: '(' +-[METHOD_NAME] IdentNode: 'DECODE' {originalText=DECODE} \-[EXPR_LIST] SqlNode: 'exprList' +-[DOT] DotNode: 'blookup2_.BL_CODE' {propertyName=blCode,dereferenceType=4,propertyPath=blCode,path=std.stdBlAcctp.blCode,tab okup2_,className=com.ito.lms.persistence.BLookup,classAlias=null} | +-[DOT] DotNode: 'student0_.STD_BL_ACCTP' {propertyName=stdBlAcctp,dereferenceType=1,propertyPath=stdBlAcctp,path=std.stdBl Alias=blookup2_,className=com.ito.lms.persistence.BLookup,classAlias=null} | | +-[ALIAS_REF] IdentNode: 'student0_.STD_ID' {alias=std, className=com.ito.lms.persistence.Student, tableAlias=student0_} | | \-[IDENT] IdentNode: 'stdBlAcctp' {originalText=stdBlAcctp} | \-[IDENT] IdentNode: 'blCode' {originalText=blCode} +-[QUOTED_STRING] LiteralNode: ''UNIVGRANT'' +-[QUOTED_STRING] LiteralNode: ''\u62f\u627\u62e\u644'' +-[QUOTED_STRING] LiteralNode: ''BEHYAR'' +-[QUOTED_STRING] LiteralNode: ''\u62f\u627\u62e\u644'' +-[QUOTED_STRING] LiteralNode: ''TEACHER'' +-[QUOTED_STRING] LiteralNode: ''\u62f\u627\u62e\u644'' +-[QUOTED_STRING] LiteralNode: ''GRANTED'' +-[QUOTED_STRING] LiteralNode: ''\u62f\u627\u62e\u644'' +-[QUOTED_STRING] LiteralNode: ''EXTGRANTED'' +-[QUOTED_STRING] LiteralNode: ''\u62e\u627\u631\u62c'' +-[QUOTED_STRING] LiteralNode: ''EXTGRANTED'' +-[QUOTED_STRING] LiteralNode: ''\u62a\u631\u62f\u62f\u64a'' \-[QUOTED_STRING] LiteralNode: ''\u63a\u64a\u631 \u628\u648\u631\u633'' </code></pre> <p>PLEASE help me ,</p> <p>Thanks alot</p> <p>Shariat</p> http://stackoverflow.com/questions/1729725/how-to-generate-and-transmit-a-javascript-variable-from-mvc-controller 0 How to generate and transmit a JavaScript variable from MVC Controller? Mega Matt 2009-11-13T14:57:45Z 2009-11-14T15:38:58Z <p>I'm trying to fill a JSON object with a list of items from the database when the page first loads. This list of items comes from the database. Right now, I've strongly typed the View and am looping through the list of items to build an HTML unordered list, and then in the JavaScript building the JSON object from what's been output in the HTML. But this is clunky.</p> <p>Ideally, I'd like to take that data from the database in the Controller, fill an object (or variable), and send that variable over to the JavaScript to use there, and skip the HTML in between (the HTML will be updated dynamically using jQuery). The variable that arrives in the JavaScript doesn't have to be a JSON object, but it does need to hold information that I've populated from the Controller. From there, I can build the JSON object in the JavaScript.</p> <p>A friend told me this is possible and he currently uses this method, but has never tried it in ASP.NET MVC. Any ideas?</p> <p><strong>CLARIFICATION:</strong> I should have been more clear in my original question, but I am trying to send the variable/JSON over to an <em>external</em> javascript file, rather than handle the JSON object/create it inline within tags.</p> http://stackoverflow.com/questions/1524858/create-table-variable-in-mysql 0 Create table variable in MySQL ANIL MANE 2009-10-06T10:47:46Z 2009-11-13T09:58:21Z <p>I need a table variable to store the particular rows from the table within the <a href="http://en.wikipedia.org/wiki/MySQL" rel="nofollow">MySQL</a> procedure. E.g. declare @tb table (id int,name varchar(200))</p> <p>Is this possible? If yes how?</p> http://stackoverflow.com/questions/1726363/how-can-i-use-a-variables-value-as-a-perl-variable-name 1 How can I use a variable's value as a Perl variable name? Sparkles 2009-11-13T00:22:06Z 2009-11-13T02:21:05Z <p>Sorry about all these silly questions, I've been thrust into Perl programming and I'm finding it really hard to think like a Perl programmer.</p> <p>Silly question for today: I load a pipe delimited file into a hash using the id field as the key, like so</p> <pre><code>#open file my %hash; while (&lt;MY_FILE&gt;) { chomp; my ($id, $path, $date) = split /\|/; $hash{$id} = { "path" =&gt; $path, "date" =&gt; $date }; } </code></pre> <p>There a few times, however, when I actually need the key to be the path because, for whatever reason (and no, it can't be changed) the id isn't unique, so I had the bright idea that I could put it all into a subroutine and pass the name of the variable to use as the key to it, kinda like so:</p> <pre><code>load_hash("path"); sub load_hash { my $key = shift; #do stuff, and then in while loop $hash{${$key}} = #and so on } </code></pre> <p>but in perldb x ${$key} is always undef, although x ${path} prints the value in $path. </p> <p>Is there some way of doing what I'm trying to?</p> <p>TIA</p> http://stackoverflow.com/questions/1725089/which-command-in-vba-can-count-the-number-of-characters-in-a-string-variable 0 Which command in VBA can count the number of characters in a string variable? brilliant 2009-11-12T20:19:50Z 2009-11-12T20:23:33Z <p>Let's say I have this variable:</p> <p>word = "habit"</p> <p>which command in VBA will allow me to count how many characters are there in this variable (in my case it's 5). </p> <p>Important: the variable "word" contains only one word, no spaces, but may have contain numbers and hyphens.</p> http://stackoverflow.com/questions/1723287/calling-a-javascript-function-named-in-a-variable 2 Calling a JavaScript function named in a variable Matt W 2009-11-12T15:59:10Z 2009-11-12T17:32:20Z <p>I have a JavaScript variable which contains the name of a JavaScript function. This function exists on the page by having been loaded in and placed using $.ajax, etc.</p> <p>Can anyone tell me how I would call the javascript function named in the variable, please?</p> <p>The name of the function is in a variable because the URL used to load the page fragment (which gets inserted into the current page) contains the name of the function to call.</p> <p>I am, of course, open to other suggestions on how to implement this solution...</p> <p>Thanks one and all,</p> <p>Matt.</p> http://stackoverflow.com/questions/1719784/c-programming-forward-variable-argument-list 1 C Programming: Forward variable argument list. Joshua Cheek 2009-11-12T03:57:07Z 2009-11-12T16:11:21Z <p>Hi, I'm trying to write a function that accepts a variable number of parameters like printf, does some stuff, then passes the variable list to printf. I'm not sure how to do this, because it seems like it would have to push them onto the stack. </p> <p>Something approximately like this</p> <p><a href="http://pastie.org/694844" rel="nofollow">http://pastie.org/694844</a></p> <pre><code>#include &lt;stdio.h&gt; #include &lt;stdarg.h&gt; void forward_args( const char *format , ... ){ va_list arglist; printf( format, arglist ); } int main (int argc, char const *argv[]){ forward_args( "%s %s\n" , "hello" , "world" ); return 0; } </code></pre> <p>Any ideas?</p> http://stackoverflow.com/questions/1717640/codeigniter-variables-config-items-within-language-files 0 Codeigniter: Variables/Config Items within Language Files ian.maroney 2009-11-11T19:53:15Z 2009-11-11T20:02:19Z <p>I have a language file with a long list of strings for my view files. My question is how to pass a variable or a config item to a language file?</p> <pre><code>&lt;?php $lang['error_activation_key_expired'] = 'The activation key you have attempted using has expired. Please request a new Activation Key &lt;a href="'.$this-&gt;config-&gt;item('base_url').'member/request_activation" title="Request a New Activation Key"&gt;here&lt;/a&gt;.'; </code></pre> <p>I would could settle for</p> <pre><code>&lt;?php $lang['error_activation_key_expired'] = 'The activation key you have attempted using has expired. Please request a new Activation Key &lt;a href="'.$base_url.'member/request_activation" title="Request a New Activation Key"&gt;here&lt;/a&gt;.'; </code></pre> <p>and pass the base_url to it somehow. I just don't know how.</p> <p>Thanks!</p> http://stackoverflow.com/questions/1715159/asp-net-code-behind-variable 0 asp.net code behind variable özkan pakdil 2009-11-11T13:27:26Z 2009-11-11T16:08:26Z <p>I am generating some head html in page load and because of that I query database once. in the page I query database again and put data into html with inline code. </p> <p>my question is is there better way to do this? I dont want to query database everytime and reach out those filled variables from inline code. something like page.addVariable in page_load and reach those at inline like page.variables["variablename"]</p> <p>thanks in advance</p> http://stackoverflow.com/questions/1703980/is-static-variable-in-c-re-allocated-everytime-calling-a-function 0 is static variable in c re-allocated everytime calling a function? tsubasa 2009-11-09T21:31:22Z 2009-11-09T22:03:09Z <p>Suppose I have a static variable declared inside a function in c. If I call that function multiple times, does the static variable get re-allocated in memory every time the function call? If it does, why the last value can always be maintained?</p> <p>Example:</p> <pre><code>void add() { static int x = 1; x++; printf("%d\n",x); } int main() { add(); // return 2 add(); // return 3 add(); // return 4 } </code></pre> http://stackoverflow.com/questions/1693327/how-to-set-mutiple-words-variable-from-command-line-input-in-c-shell 1 How to set mutiple words variable from command line input in C shell Pat 2009-11-07T15:02:37Z 2009-11-07T21:14:51Z <p>I'm writing a script to search for a pattern in file. For example</p> <p><em>scriptname pattern file1 file2 filenN</em></p> <p>I use for loop to loop through arguments argv, and it does the job if all arguments are supplied. However if only one argument is supplied (in that case pattern ) it should ask to input file name or names, and then check for pattern. How I can set variable to include multiple words input from command line so I can use it in loop. Or even better is it possible to assign command line input to argv, so I don’t have to use the same loop twice only because it is different variable name (one to loop through argv if more than on argument, and second to loop through filenames variable if only one argument supplied). Below is the part of my script which is causing problem:</p> <pre><code>set pattern = $1 if ($#argv == 1) then echo "Enter name of files" set filenames = $&lt; #how I can set it to accept more than word? endif </code></pre>