active questions tagged parameters - Stack Overflow most recent 30 from stackoverflow.com 2009-12-17T14:16:16Z http://stackoverflow.com/feeds/tag/parameters http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1914275/googles-app-engine-python-how-to-get-parameters-from-a-log-in-pages -1 Googles App Engine, Python: How to get parameters from a log-in pages? brilliant 2009-12-16T12:08:21Z 2009-12-17T05:33:40Z <p>Here is a quote from <a href="http://stackoverflow.com/questions/1901701/how-to-check-for-an-http-status-code-of-401">here</a>:</p> <blockquote> <p>So in short ... you need to look into login page, see what params it uses e.g login=xxx, password=yyy, post it to that page and you will have to manage the cookies too, that is where library like twill etc come into picture.</p> </blockquote> <p>How could I do it using Python and Google App Engine? Can anybody please give me some clue? I have already asked a question about the authenticated request, but here it seems the matter is different as here I am suggested to look into login page and get parameters, and also I have to deal with cookies.</p> http://stackoverflow.com/questions/486896/adding-a-parameter-to-the-url-with-javascript 2 Adding a parameter to the URL with JavaScript Lessan Vaezi 2009-01-28T08:33:12Z 2009-12-16T21:36:29Z <p>In a web application that makes use of AJAX calls, I need to submit a request but add a parameter to the end of the URL, for example:</p> <p>Original URL: </p> <blockquote> <p><a href="http://server/myapp.php?id=10" rel="nofollow">http://server/myapp.php?id=10</a></p> </blockquote> <p>Resulting URL:</p> <blockquote> <p><a href="http://server/myapp.php?id=10" rel="nofollow">http://server/myapp.php?id=10</a><strong>&amp;enabled=true</strong></p> </blockquote> <p>Looking for a JavaScript function which parses the URL looking at each parameter, then adds the new parameter or updates the value if one already exists.</p> http://stackoverflow.com/questions/1882057/retrieve-sqlcommand-oledbcommand-query-after-inserting-parameters 0 Retrieve SqlCommand/OleDbCommand query after inserting parameters? entens 2009-12-10T16:09:29Z 2009-12-15T23:28:45Z <p>Is there any way to access the prepared statement as sent to the SQL server?</p> <pre><code> Dim params(1) As OleDb.OleDbParameter params(0) = New OleDb.OleDbParameter("@ID", OleDb.OleDbType.VarChar, 50) params(0).Value = guiItemsGridView.Rows(e.RowIndex).Cells("ID").Value params(1) = New OleDb.OleDbParameter("@SavedValue", OleDb.OleDbType.VarChar, 50) params(1).Value = guiItemsGridView.Rows(e.RowIndex).Cells("Saved Value").Value Dim QueryString As String = "UPDATE Items SET [Saved Value]=@SavedValue WHERE ID=@ID" myDatabase.objAdapter.UpdateCommand = New OleDb.OleDbCommand(QueryString, DatabaseConnection) myDatabase.objAdapter.UpdateCommand.Parameters.AddRange(params) myDatabase.objAdapter.UpdateCommand.Prepare() Debug.Print(myDatabase.objAdapter.UpdateCommand.CommandText) </code></pre> <p>I'm looking for a way to access the prepared query after the parameters have been added. After preparing the command, CommandText still contains the base query <code>UPDATE Items SET [Saved Value]=@SavedValue WHERE ID=@ID</code> even though the parameters have been passed.</p> <p>I would find it useful to write a log of queries preformed by this chunk of code for debugging other areas of this application.</p> http://stackoverflow.com/questions/1910923/how-to-pass-a-mysql-database-function-as-a-query-parameter-from-c 1 How to pass a MySQL database function as a query parameter from c# VaSk0_A 2009-12-15T22:34:18Z 2009-12-15T23:10:59Z <p>Let me explain a little.</p> <p>Image you have the flowing MySQL table:</p> <pre><code>CREATE TABLE test ( value DATETIME ); </code></pre> <p>Currently I am doing something like this:</p> <pre><code>command.CommandText = "UPDATE test SET value = ?value"; command.Parameters.AddWithValue("?value", DateTime.Now); </code></pre> <p>But the clients date/time settings are unreliable so I would like the time to be determined at the server. Something like:</p> <pre><code>command.CommandText = "UPDATE test SET value = NOW()"; </code></pre> <p>The trick is that I want to pass the "NOW()" function as a parameter to the original query. Please understand that this small example is OVERLY simplified. In reality the table has 48 columns, 7 of which are datetime, marking the date and/or time the user made a particular operation to the object the database row denotes. When the user performs a new operation to the object I read the entire row and insert it again, with a different ID of course, (Something like a poor man's revision history) so I like to keep the date/time of the old operation and insert it in the new row, but at the same time set the current date/time (as seen by the database) for the new operation.</p> <p>For simplicity lets go back to the previous example.</p> <p>As far as I can find I have two choices.</p> <pre><code>bool switch; .... command.CommandText = "UPDATE test SET value = " + switch ? "NOW()" : "?value"; command.Parameters.AddWithValue("?value", value); </code></pre> <p>OR</p> <pre><code>bool switch; .... if (switch) { command.CommandText = "SELECT NOW()"; value = Convert.ToDateTime(command.ExecuteScalar()); } command.CommandText = "UPDATE test SET value = ?value"; command.Parameters.AddWithValue("?value", value); </code></pre> <p>I don't like neater of them. Wouldn't it be neat if I could do something similar to:</p> <pre><code>command.CommandText = "UPDATE test SET value = ?value"; if (switch) { command.Parameters.AddWithValue("?value", "NOW()"); } else { command.Parameters.AddWithValue("?value", value); } </code></pre> <p>That way I would still execute the same one query.</p> <p>Waiting for your opinions on this. I will be very grateful for any help you can provide.</p> http://stackoverflow.com/questions/1904010/reusing-a-contextmenu-for-multiple-controls-in-wpf 0 Reusing a ContextMenu for multiple controls in WPF. Anthony Potts 2009-12-14T22:37:34Z 2009-12-15T05:08:19Z <p>I have three tree view controls which house different (but mostly similar data), as a result the actions that can be taken at each level is the same as far as the user is concerned, but different in their type (which is something I have to worry about as the developer). What I would <em>like</em> to do is reuse this context menu and pass in a type to it (or be able to retrieve it) and then the type would get passed through to the actual Executed function.</p> <p>So that we can have a common verbage here's some code:</p> <pre><code>&lt;UserControl x:Class="ucControl" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:local="clr-namespace:LocalNamespace" Name="ucControl" xmlns:my="http://schemas.microsoft.com/wpf/2008/toolkit" Background="LightGray"&gt; &lt;UserControl.Resources&gt; &lt;ContextMenu x:Key="GroupMenu"&gt; &lt;MenuItem Header="Add Group" Command="New"/&gt; &lt;MenuItem Header="Rename Group" Command="local:CustomCommands.RenameGroup"/&gt; &lt;MenuItem Header="Delete Group" Command="Delete"/&gt; &lt;Separator/&gt; &lt;MenuItem Header="Change Contents of Group" Command="local:CustomCommands.EditGroupContents"/&gt; &lt;/ContextMenu&gt; &lt;/UserControl.Resources&gt; &lt;UserControl.CommandBindings&gt; &lt;CommandBinding CanExecute="CanAddGroup" Command="New" Executed="AddGroup"/&gt; &lt;CommandBinding Command="local:CustomCommands.RenameGroup" CanExecute="CanRename" Executed="RenameGroup"/&gt; &lt;CommandBinding Command="local:CustomCommands.EditGroupContents" CanExecute="CanEditGroupContents" Executed="EditGroupContents"/&gt; &lt;/UserControl.CommandBindings&gt; &lt;TabControl Name="tcTabs"&gt; &lt;TabItem Header="Size" Name="tiSize"&gt; &lt;TreeView Name="tvSizeGroup" ContextMenu="{StaticResource GroupMenu}"/&gt; &lt;/TabItem&gt; &lt;TabItem Header="Brand" Name="tiBrand"&gt; &lt;TreeView Name="tvBrandGroup" ContextMenu="{StaticResource GroupMenu}"/&gt; &lt;/TabItem&gt; &lt;TabItem Header="Color" Name="tiColor"&gt; &lt;TreeView Name="tvColorGroup" ContextMenu="{StaticResource GroupMenu}"/&gt; &lt;/TabItem&gt; &lt;/TabControl&gt; </code></pre> <p></p> <p>In this example, I would like for each of Size, Brand, and Color to have the same ContextMenu, but if the Context Menu is pulled up in the Size TreeView, I will need to add a group of type Size to my table. Is this possible the way I am doing it? I am trying to avoid making three ContextMenus, which would obviously be a way to do this.</p> http://stackoverflow.com/questions/1592085/calling-client-side-wcf-service-with-type-listof-t 0 Calling Client-Side WCF Service With Type List<Of T> Code Sherpa 2009-10-20T01:58:06Z 2009-12-14T23:53:24Z <p>Hi.</p> <p>I am designing a multi-file upload service that also shows upload progress for each file.</p> <p>If I was to design my WCF method as a SOAP contract, I would do something like this:</p> <pre><code>var request = IService.UploadMethod(List&lt;Upload&gt; request); </code></pre> <p>But, how do I pass the parameter ""request"" of type "<code>List&lt;Upload&gt;</code>" when I am calling the method from the client (../upload.svc/ uploadpictures/""request"")?</p> <p>Help appreciated, thanks. </p> http://stackoverflow.com/questions/582831/default-value-to-a-data-parameter-ssrs 0 Default value to a data parameter , SSRS san 2009-02-24T17:59:33Z 2009-12-14T21:00:03Z <p>In my SSRS report I wanted to default the date parameter with the execution date. I default the date patameter with <code>=DateValue(Globals!ExecutionTime)</code> or <code>=today</code>. I do have 5 other parameters in my report.</p> <p>In reporting manager, it makes the page refresh each time when I select another parameter value. Why is that? How do I solve this?</p> http://stackoverflow.com/questions/1898737/pass-parameter-by-linkto-ruby-on-rails 0 pass parameter by link_to ruby on rails Lily 2009-12-14T03:22:04Z 2009-12-14T04:06:31Z <p>Hi</p> <p>I have this line of code:</p> <pre><code>&lt;%= link_to "Add to cart", :controller =&gt; "car", :action =&gt; "add_to_cart", :car =&gt; car %&gt; </code></pre> <p>when im in the add_to_cart method...how can i call the :car please?</p> <pre><code>@car = Car.new(params[:car]) </code></pre> <p>doesnt work because it says im trying to stringify</p> <p>I dont understand whats wrong because I used this to create new users and it worked fine.</p> <p>By the way, car is my car object.</p> <p>thnx</p> http://stackoverflow.com/questions/1763869/how-can-i-get-the-date-format-from-an-ssrs-report-from-the-web-service-interface 1 How can I get the date format from an SSRS report from the web service interface? Mr Grieves 2009-11-19T14:58:10Z 2009-12-11T22:44:09Z <p>I get report params in C# code from the webservice as follows:</p> <pre><code>ReportingService2005 ReportingService = ConnectToSSRS(); ReportParameter[] ReportParams = ReportingService.GetReportParameters(reportSelector.SelectedValue, HistoryID, ForRendering, emptyParams, null); </code></pre> <p>DateTime parameters currently seem to always come up as mm/dd/yyyy. Where is the date format defined? It's not hardcoded like this is it? Is there a way for me to obtain the DateFormat from code?</p> <p>Thanks</p> http://stackoverflow.com/questions/1883024/asp-page-not-receiving-post-parameters 1 ASP page not receiving POST parameters eidylon 2009-12-10T18:26:28Z 2009-12-10T18:38:09Z <p>Hi all, I am writing a small application in Classic ASP. I have a page which has a form, which posts to a second page. Included with the form's POST, are file uploads, hence the need for a POST method. </p> <p>The second page though is NOT seeing ANY of the fields being sent by the first page. Calling either <code>Request("param")</code> or <code>Request.Form("param")</code> both just return empty string. </p> <p>If i switch the method on my form from POST to GET (with <strong>NO</strong> other changes), then the values are properly picked up by the receiving page, of course then I cannot do the file uploads, which are a crucial part of this application.</p> <p>In GET mode, the parameters are all put on the url as expected. In POST mode, I fired up FireBug, and examined the POST data of my request. The originating form <strong>IS</strong> sending all the values in the request (they show up in FireBug as expected), so the problem seems to be on the receiving page's end.</p> <p>The form is being submitted via code, called from the button with the <code>onclick="javascript:saveMinutes();"</code></p> <p>My form and the saveMinutes() function are declared as follows: </p> <pre><code>&lt;form id="frmMinutes" enctype="multipart/form-data" method="post" action="saveminutes.asp"&gt; &lt;table id="tblMinutes" style="width: 100%;"&gt; &lt;tr&gt; &lt;td&gt; &lt;select id="selYear" name="year" size="13" onclick="javascript:setDatePickerRange(); checkForMinutes();"&gt; &lt;%For lc = Year(Now) To getMinutesFirstYear() Step - 1%&gt; &lt;option value="&lt;%=lc%&gt;" &lt;%If lc = Year(Now) Then%&gt;selected="selected"&lt;%End If%&gt;&gt;&lt;%=lc%&gt;&lt;/option&gt; &lt;%Next%&gt; &lt;/select&gt; &lt;/td&gt; &lt;td&gt; &lt;select id="selMonth" name="month" size="13" onclick="javascript:setDatePickerRange(); checkForMinutes();"&gt; &lt;%For lc = 1 To 12%&gt; &lt;option value="&lt;%=lc%&gt;" &lt;%If lc = Month(Now) Then%&gt;selected="selected"&lt;%End If%&gt;"&gt;&lt;%=MonthName(lc)%&gt;&lt;/option&gt; &lt;%Next%&gt; &lt;/select&gt; &lt;/td&gt; &lt;td style="width: 100%; padding-left: 20px;"&gt; &lt;table id="enterMinutes" style="width: 100%"&gt; &lt;tr&gt; &lt;th&gt;Topic:&lt;/th&gt; &lt;td&gt;&lt;input id="topic" name="topic" type="text" maxlength="100" field="topic" /&gt;&lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;th&gt;Presenter:&lt;/th&gt; &lt;td&gt;&lt;input id="presenter" name="presenter" type="text" maxlength="100" field="presenter" /&gt;&lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;th&gt;Date:&lt;/th&gt; &lt;td&gt;&lt;input id="mtgdate" name="mtgdate" type="text" maxlength="10" class="datepick" field="mtgdate" readonly="readonly" /&gt;&lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;th style="vertical-align: top;"&gt;Files:&lt;/th&gt; &lt;td style="text-align: left;"&gt; &lt;input id="file0" name="file0" type="file" size="35" /&gt;&lt;span class="redEmphasis" style="margin: 0px 10px 0px 10px;"&gt;(.doc or .docx)&lt;/span&gt;&lt;input type="button" value="+" onclick="javascript:addFileUpload();" /&gt; &lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;th style="vertical-align: top;"&gt;&lt;/th&gt; &lt;td style="text-align: left; padding: 10px 0px 10px 0px;"&gt; &lt;input type="button" style="width: 100%" value="update minutes" onclick="javascript:saveMinutes();" /&gt; &lt;/td&gt; &lt;/tr&gt; &lt;/table&gt; &lt;span id="warnexist" class="redEmphasis" style="display: none;"&gt;The selected month already has associated minutes (). doc files take precedence over docx.&lt;/span&gt; &lt;/td&gt; &lt;/tr&gt; &lt;/table&gt; &lt;/form&gt; </code></pre> <p>saveMinutes(): </p> <pre><code>function saveMinutes() { if($('form#frmMinutes input[type=text]').filter(function () { return $(this).val() == '' }).length &gt; 0) { alert('Please enter all fields.'); return; } if ($('form#frmMinutes input#file0').filter(function () { return !$(this).val().match(/.*\.docx?$/i) }).length &gt; 0) { alert('First file must be doc or docx.'); return; } $('form#frmMinutes input[type=file]').filter(function () { return $(this).val() == '' }).next().remove(); $('form#frmMinutes input[type=file]').filter(function () { return $(this).val() == '' }).remove(); removeDupeFiles(); // reindex file inputs after removing emptys/dupes var fs = $('form#frmMinutes input[type=file]:gt(0)'); for (lc = 1; lc &lt;= fs.length; lc++) { var fid = 'file' + new String(lc); $(fs[lc-1]).attr('id', fid).attr('name', fid); } $('form#frmMinutes')[0].submit(); } </code></pre> http://stackoverflow.com/questions/1331563/must-i-use-parameters-with-an-objectdatasource-update 0 Must I use parameters with an ObjectDataSource update? unknown (google) 2009-08-25T23:23:01Z 2009-12-10T17:00:02Z <p>I have a business object that I've been using, which has a bunch of properties and a Save method, which inserts/updates to the database. The save method is NOT status, so the object needs to be instantiated, and the properties for the DB update/insert get pulled from the object.</p> <p>Now I'm trying to bind the object to a FormView with the ObjectDataSource. I have it working so it instantiates based on the QueryString parameter, no problem, and populates the textboxes just fine. The UpdateMethod I have set to the Save function. Now it gets stuck.</p> <p>It seems the ObjectDataSource needs a method with all the fields/properties/textboxes as parameters. I would have thought it would update the object's properties and then call the parameterless Save function. Is this wishful thinking?</p> <p>Do I now need to change my Save function to include parameters, and change all the instances where it's getting used to this new method, just for this reason?</p> <p>Thanks Sean</p> http://stackoverflow.com/questions/1881132/mock-an-out-paramter-with-moq-or-rhino-mock-or-something-else 0 Mock an out paramter with moq or rhino mock or something else Omu 2009-12-10T13:55:09Z 2009-12-10T14:40:54Z <p>I tried with NMock2 but I get TypeLoadExceptions when trying to pass the mocks into the constructor, also I saw TypeMock can do that but it costs 80$</p> http://stackoverflow.com/questions/809333/powershell-command-processing-passing-in-variables 1 Powershell Command Processing (Passing in Variables) GabeA 2009-04-30T22:04:52Z 2009-12-09T18:28:26Z <p>I'm creating a Powershell script to deploy some code and part of the process is to call a command-line compression tool called RAR.EXE to back-up some folders. </p> <p>I'm attempting to dynamically build out the parameters and then have powershell call the command with the variables but I'm running into trouble. It isn't working...</p> <p>Run the following script and you should see what I'm talking about. The parameters being passed in as a variable are being mangled. If I pass the entire command + parameters in I get the infamous "is not recognized as a cmdlet..." message.</p> <p>Thanks for any help!</p> <pre><code>echo "this should succeed" &amp; cmd /c echo foo echo "why does this echo out an additional double quote?" $param = "/c echo foo" &amp; cmd "$param" echo "this does the same" $param = "/c echo foo" &amp; cmd $param echo "escaping the slash doesn't work either..." $param = "`/c echo foo" &amp; cmd $param echo "this fails, but why?" $cmd = "cmd /c echo foo" &amp;$cmd </code></pre> http://stackoverflow.com/questions/1601511/do-not-understand-passing-parameters-in-seam 2 Do not understand passing parameters in seam april26 2009-10-21T15:12:15Z 2009-12-09T15:04:16Z <p>As I debug my seam application, it dawns on me that I don't really understand how parameter passing works. The following terminology really has me confused. So I am asking this very general question in the hopes of getting a good explanation of what works with what and what certain things are for.</p> <p>First of all, to get from one page to the next you can use h:commandButton or s:button. I understand that s:button does not submit a form, but that doesn't help me understand the difference. If you are not submitting a form by going from one page to the next, then what are you doing?</p> <p>My app involves entering information in a form, hitting a button and then going to a new page that displays results after running a query. It seems I have seen this activity take place with s:button, so how is that if it's not "submitting a form"? I feel I'm missing something fundamental here.</p> <p>As for the parameters themselves...from what I have seen you can pass parameters using one of 3 methods:</p> <ol> <li>f:param. This seems to occur more often in combo with s:button than h:commandbutton. Why is that?</li> <li>Also, you can "pass" (or something) parameters using your page.xml file. The parameter seems to have to appear in both the source page.xml and the target page.xml to make it show up in the URL.</li> <li>Last of all, there is the option of adding @RequestParameter annotation to your backing bean. I gather that is also used when you set f:param in your view. Does that mean the one in page.xml gets overlooked? I notice in the registration example of the seam distribution, the user bean gets populated without any parameters being passed via page.xml for f:param. How is that possible?</li> </ol> <p>I'm sure this question reveals a great deal of ignorance. </p> <p>Hopefully one of you eloquent people will "get" what I'm asking and give me an explanation of this process.</p> <p>Thanks in advance.</p> <p>TDR</p> http://stackoverflow.com/questions/1869374/overload-with-generic-type-parameter-instead 1 Overload with generic type parameter instead? Mike Atlas 2009-12-08T19:45:58Z 2009-12-08T19:49:33Z <p>I'd like to add a generic type method <code>DoSomething&lt;T&gt;</code>, but for backwards compatibility, I want it to simply pass the type parameter for the generic type from an existing method with the same name.</p> <pre><code>public void DoSomething&lt;T&gt;(Data data) { //do something with Data, it depends on the type of T } public void DoSomething(Data data, Type dataType) { DoSomething&lt;dataType&gt;(group); } </code></pre> <p>However, <code>&lt;dataType&gt;</code> in the new <code>DoSomething</code> throws following type checking error: "Type name or namespace expected."</p> <p>Can someone help me understand the gap in my thinking that makes the above sample a type checking error? Is what I'm doing just... bad design?</p> http://stackoverflow.com/questions/1864608/mysql-stored-procedure-variable-in-where-clause 0 MySQL stored procedure: variable in WHERE clause? Wells 2009-12-08T04:34:07Z 2009-12-08T06:09:19Z <p>Can you not do the following w/ MySQL stored procedures?/</p> <pre><code>DROP PROCEDURE IF EXISTS `test`; DELIMITER // CREATE PROCEDURE TEST (team varchar(30)) BEGIN SELECT * FROM TEAMS WHERE TEAM_ID = @team; END // </code></pre> <p>Where @team (or team) is the variable passed to the stored procedure?</p> http://stackoverflow.com/questions/1859861/how-in-c-to-pass-a-name-of-the-object-as-a-parameter-to-function 0 How in C# to pass a name of the object as a parameter to function? rem 2009-12-07T13:06:50Z 2009-12-07T14:52:10Z <p>I have the code that change the state of boolean property on mouseclick, depending on name of the clicked object:</p> <pre><code>private void Grid_MouseLeftButtonDown(object sender, MouseButtonEventArgs e) { FrameworkElement feSource = e.Source as FrameworkElement; switch (feSource.Name) { case "r1s1": if (r1s1.IsSelected == false) r1s1.IsSelected = true; else r1s1.IsSelected = false; break; case "r1s2": if (r1s2.IsSelected == false) r1s2.IsSelected = true; else r1s2.IsSelected = false; break; ............. } e.Handled = true; } </code></pre> <p>I would like to do the same action passing the name of the sender (r1s1, r1s2,..and so on) as a parameter to function where this string combines with a name of property (IsSelected) just to optimize code. Something like that (just idea):</p> <pre><code>private void Grid_MouseLeftButtonDown(object sender, MouseButtonEventArgs e) { FrameworkElement feSource = e.Source as FrameworkElement; ChangeSelection (feSource.Name) } public void ChangeSelection(string name) { if (name.IsSelected == false) name.IsSelected = true; else name.IsSelected = false; } </code></pre> <p>Please, correct me. What I am doing wrong?</p> http://stackoverflow.com/questions/1856915/nice-way-to-pass-parameters-to-pdo 1 Nice way to pass parameters to PDO Ramon 2009-12-06T22:48:22Z 2009-12-07T01:05:40Z <p>Positional parameters become a nightmare when dealing with more than 3 or 4 parameters. Named parameters are verbose. I'm thinking of doing this:</p> <pre><code>query("SELECT * FROM users WHERE username = ", $username, " AND password = ", $password) </code></pre> <p>With dynamic parameters (using <code>func_get_args()</code>), every second one being transformed into a positional parameter. </p> <p>I've never seen this before and wanted to know if anyone has done this before and why/why not?</p> http://stackoverflow.com/questions/1854441/writing-a-replacement-for-a-function-which-takes-a-variable-number-of-parameters 2 writing a replacement for a function which takes a variable number of parameters (c programming) Charles 2009-12-06T05:13:18Z 2009-12-06T05:27:48Z <p>I'm looking to write a function to replace fprintf</p> <pre><code>int fprintf ( FILE * stream, const char * format, ... ); </code></pre> <p>I'm not sure how to define a function such as this, because, after the format parameter, this function takes a variable number of parameters. Specifically, it takes at least as many additional arguments as were specified in the format.</p> <p><strong>UPDATE</strong> I found a resource on the subject (<a href="http://publications.gbdirect.co.uk/c%5Fbook/chapter9/stdarg.html" rel="nofollow">http://publications.gbdirect.co.uk/c%5Fbook/chapter9/stdarg.html</a>), but the example doesn't seem to compile under Linux, the OS that I'm using.</p> <p>An example of a replacement for fprintf which just calls fprintf would be helpful.</p> <p><em>This isn't homework. I'm just a beginner who is trying to learn how to program in his free time. Thanks!</em></p> http://stackoverflow.com/questions/1853713/getting-a-userid-into-a-sqldatasource 0 Getting a UserId into a SQLDataSource Cronner 2009-12-05T22:42:56Z 2009-12-05T23:40:17Z <p>I am still new to asp.net and I'm having a problem that I just can't figure out. I'm using vb and the .net membership api.</p> <p>My question is, how do I get the current user's userid into a DetailsView INSERT?</p> <pre><code>&lt;InsertParameters&gt; &lt;asp:Parameter Name="UserID"/&gt; &lt;/InsertParameters&gt; </code></pre> http://stackoverflow.com/questions/1847803/xl-vba-passing-an-array-in-a-user-defined-function 0 XL VBA - Passing an array in a user defined function? Nicolas 2009-12-04T15:44:22Z 2009-12-05T09:46:21Z <p>How to pass an array as a parameter for a user defined function in MS Excel VBA?</p> <p>Eventually I want to test that if a given date (dateDay) is in several ranges of dates (arrayVacation):</p> <pre><code>Function CB_IsInRangeArr(dateDay As Date, ParamArray arrayVacation() As Variant) As Boolean ' Test that the array is in the form of 2 columns and n rows / if not send back an error If (UBound(arrayVacation, 1) &lt;&gt; 2) Then CB_IsInRangeArr = CVErr(xlErrNA) Else CB_IsInRangeArr = TRUE End If End Function </code></pre> <p>Yet already at this stage, the function does not work properly. It returns #VALUE! and I can find a way to get it to work.</p> <p>Thank you for your help,</p> http://stackoverflow.com/questions/1624377/mysql-stored-procedure-with-parameters-problem 1 mysql stored procedure with parameters problem riyas kp 2009-10-26T11:53:07Z 2009-12-05T02:00:05Z <p>I had created following procedure.</p> <pre><code>DELIMITER ;; DROP PROCEDURE IF EXISTS getAllPortfoliosDemo;; CREATE PROCEDURE getAllPortfoliosDemo( IN keyid INT(10)) BEGIN DECLARE whereString char(100); IF (keyid &gt; 0 ) THEN SET whereString = CONCAT( ' WHERE pkid = ', keyid ); ELSE SET whereString = ' WHERE 1 '; END IF; SELECT pkid, title FROM Portfolio whereString; END ;; </code></pre> <p>this query returns no error. it works well without parameters. for eg CALL getAllPortfoliosDemo(); works. but it didn't works with a parameter. for eg CALL getAllPortfoliosDemo(5); didn't returns any row.</p> <p>also i tried the following alternate query</p> <pre><code>DELIMITER ;; DROP PROCEDURE IF EXISTS getAllPortfoliosDemo;; CREATE PROCEDURE getAllPortfoliosDemo( IN keyid INT(10)) BEGIN DECLARE whereString char(100) DEFAULT NULL; IF (keyid &gt; 0 ) THEN SET whereString = CONCAT( ' AND pkid = ', keyid ); END IF; SET @SQLstmt = CONCAT('SELECT pkid, title FROM Portfolio ', whereString) ; PREPARE SQLbase FROM @SQLstmt; EXECUTE SQLbase; DEALLOCATE PREPARE SQLbase; END ;; </code></pre> <p>this also didn't returns any result set. any one can a sagest a method. thanks in advance</p> http://stackoverflow.com/questions/1728807/how-do-i-grab-all-the-request-parameters-in-catalyst 0 How do I grab all the request parameters in Catalyst? freakwincy 2009-11-13T12:00:53Z 2009-12-04T23:45:15Z <p>Specifically I'm trying to capture all the POST parameters from a payment gateway as a single string and then parse them looking for the string 'ERROR'. I'm aware there's a $c->request->parameters method but I'm not quite sure how its used and couldn't figure it out from the CPAN documentation. Thanks in advance!</p> http://stackoverflow.com/questions/1846679/what-happens-when-i-call-a-javascript-function-which-takes-parameters-without-su 1 What happens when I call a Javascript function which takes parameters, without supplying those parameters? Krummelz 2009-12-04T12:31:41Z 2009-12-04T12:43:53Z <p>What happens when I call a Javascript function which takes parameters, without supplying those parameters?</p> http://stackoverflow.com/questions/40480/is-java-pass-by-reference 43 Is Java pass by reference? zombywuf 2008-09-02T20:14:29Z 2009-12-03T16:06:28Z <p>I always thought Java was pass by reference, however I've seen a couple of blog posts (e.g. <a href="http://javadude.com/articles/passbyvalue.htm" rel="nofollow">this blog</a>) that claim it's not. I don't think I understand the distinction they're making. Could someone explain it please?</p> http://stackoverflow.com/questions/1840129/how-do-i-pass-a-parameter-from-asp-to-xsl 1 How do I pass a parameter from ASP to XSL? theaxe 2009-12-03T14:17:56Z 2009-12-03T15:26:52Z <p>I'm writing a simple asp page to show a team rota based on some XML. Here's the XML:</p> <pre><code>&lt;rota&gt; &lt;shift date="20091201" primary="Chan" secondary="John" notes="notes"&gt;&lt;/shift&gt; &lt;shift date="20091202" primary="Mike" secondary="Alex" notes="notes"&gt;&lt;/shift&gt; &lt;shift date="20091203" primary="Ross" secondary="Mike" notes="notes"&gt;&lt;/shift&gt; &lt;shift date="20091204" primary="Neil" secondary="Ross" notes="notes"&gt;&lt;/shift&gt; &lt;/rota&gt; </code></pre> <p>I want my asp page to show today's rota details and maybe the details for the next couple of days. Since later on I'd like to be able to set a day in the future to see who's working around then I want to be able to pass a YYYYMMDD date from the ASP to the XSL that processes the XML.</p> <p>Here's the XSL I have so far, just highlighting the hardcoded 'current' date for now:</p> <p> </p> <pre><code>&lt;xsl:template match="rota"&gt; &lt;html&gt; &lt;head&gt; &lt;title&gt;Team Rota&lt;/title&gt; &lt;LINK type="text/css" rel="stylesheet" href="http://www.csfb.net/homepage/global/scripts/csfb_intranet.css"/&gt; &lt;/head&gt; &lt;body&gt; &lt;table border="1"&gt; &lt;TR&gt;&lt;TH&gt;Date&lt;/TH&gt;&lt;TH&gt;Primary&lt;/TH&gt;&lt;TH&gt;Secondary&lt;/TH&gt;&lt;TH&gt;Notes&lt;/TH&gt;&lt;/TR&gt; &lt;xsl:for-each select="shift"&gt; &lt;tr&gt; &lt;xsl:choose&gt; &lt;xsl:when test="@date = '20091203'"&gt; &lt;td bgcolor='FFF0F0'&gt;&lt;xsl:value-of select="@date"/&gt;&lt;/td&gt; &lt;/xsl:when&gt; &lt;xsl:otherwise&gt; &lt;td&gt;&lt;xsl:value-of select="@date"/&gt;&lt;/td&gt; &lt;/xsl:otherwise&gt; &lt;/xsl:choose&gt; &lt;td&gt;&lt;xsl:value-of select="@primary"/&gt;&lt;/td&gt; &lt;td&gt;&lt;xsl:value-of select="@secondary"/&gt;&lt;/td&gt; &lt;td&gt;&lt;xsl:value-of select="@notes"/&gt;&lt;/td&gt; &lt;/tr&gt; &lt;/xsl:for-each&gt; &lt;/table&gt; &lt;/body&gt; &lt;/html&gt; &lt;/xsl:template&gt; </code></pre> <p></p> <p>and here's the ASP, not yet passing any parameters:</p> <pre><code>''// Load the XML sourcefile = "rota.xml" set source = Server.CreateObject("Microsoft.XMLDOM") source.async = false source.load(sourceFile) ''// Load the XSL styleFile = Server.MapPath("rota.xsl") set style = Server.CreateObject("Microsoft.XMLDOM") style.async = false style.load(styleFile) htmltext = source.transformNode(style) Response.Write htmltext </code></pre> <p>So how do I a) pass a parameter to the XSL and b) pick up that parameter and use it in the XSL?</p> <p>Thanks for any guidance.</p> http://stackoverflow.com/questions/1835963/what-is-the-sig-parameter-passed-into-registerusers-method-on-facebook 0 What is the sig parameter passed into registerUsers method on facebook Simon 2009-12-02T21:33:11Z 2009-12-03T15:23:35Z <p>Hello I have a problem of understanding what the sig parameter is and how to generate it. I have read the documentation in registerUsers but not sure what and how to get it.</p> http://stackoverflow.com/questions/1837886/how-to-correctly-pass-some-custom-parameters-to-event-handlers-in-wpf 0 How to correctly pass some custom parameters to event handlers in WPF? rem 2009-12-03T05:41:59Z 2009-12-03T07:04:46Z <p>What could be a correct way to assign parameters to objects in WPF window (objects as simple as rectangles) and pass them to event handlers on mouse clicks?</p> <p>Thank you.</p> http://stackoverflow.com/questions/750932/publish-crystal-reports-with-htm-based-parameter-page-to-the-intranet 0 Publish crystal reports with htm-based parameter page to the intranet whiz 2009-04-15T09:33:30Z 2009-12-03T00:57:45Z <p>Is there a way to publish my crystal reports and call them throuh html-based parameter page (preferably jsp) to our intranet?</p> <p>We have developed reports using Crystal Reports, and we want users to be able to call these reports through an HTML-based page through our itnranet.</p> <p>Any advice?</p> http://stackoverflow.com/questions/1828368/c-sql-server-parameters-and-oledb 0 C# - SQL Server - ? parameters and Oledb Jonathan.Peppers 2009-12-01T19:36:48Z 2009-12-01T21:35:12Z <p>I am writing a small framework in C# for importing data to SQL Server.</p> <p>I have noticed that if you try to use the ? placeholder for parameters, they do not work if you use the System.Data.SqlClient namespace.</p> <p>However, if you use the System.Data.OleDb namespace for working with the database, they work just fine. (you just have to add Provider=SQLOLEDB in your connect string)</p> <p>So I have a few questions, because the ? syntax is required by my solution:</p> <ol> <li>Is there an alternative to using named parameters with System.Data.SqlClient? I want to use ordered parameters.</li> <li>Is there any performance impact to using one namespace (ado provider) over the other?</li> <li>Is there any other reason I should prefer one namespace over the other?</li> </ol> <p>To elaborate on what I'm trying to do, my framework is going to take a class decorated with some custom attributes and generate SQL like so:</p> <pre><code>INSERT INTO myTable (col1, col2, ...) VALUES (?, ?, ...) </code></pre> <p>This string will be created with one IDbCommand and several IDataParameters and for each ExecuteNonQuery it will merely set the values on the IDataParameters.</p> <p>Any thoughts?</p> <p>Edit: I tried using named parameters as p0, p1, etc. as an answerer mentioned and it is working pretty well on SqlClient. However if I use Oledb, it errors saying:</p> <pre><code>"Must declare the scalar variable @p0." </code></pre> <p>My parameter is created like so:</p> <pre><code>new OleDbParameter("p" + index, GetType(attribute)); //GetType does work to get the correct SqlDbType </code></pre> <p>What is wrong? I also tried adding and removing the @ symbol in the parameter name to no avail.</p> <p>FINAL EDIT: I just made Oledb use ? and SqlClient use named parameters. I can change back and forth for new providers.</p>