8
votes
9answers
225 views
Can I detect whether I’ve been given a new object as a parameter?
Short Version
For those who don't have the time to read my reasoning for this question below:
Is there any way to enforce a policy of "new objects only" or "existing objects only" for a method's …
0
votes
0answers
11 views
Tokyo Cabinet Tuning Parameters
Hello,
I have been trying to find a better Tokyo Cabinet (or Tokyo Tyrant) configuration for my application, but I don't know exactly how. I know what some parameters mean but I want to have a fine …
0
votes
1answer
26 views
Asp.Net: Using variable as Update Parameter?
Hi all,
Is it possible to use a variable as an update parameter in asp.net?
I have the page number to be updated stored in a variable called 'mypagenum', how would I write an update parameter using …
0
votes
2answers
36 views
Collecting additional parameter Ruby on Rails…
I am building a project management app and need some help with how to pass a parameter (I think that is how you say it). Here is what I have going on.
I have a table called "proposals" and …
-1
votes
3answers
64 views
Googles App Engine, Python: How to get parameters from a log-in pages?
Here is a quote from here:
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 …
0
votes
1answer
35 views
Reusing a ContextMenu for multiple controls in WPF.
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 …
0
votes
1answer
14 views
SSRS form parameter passing: input type submit vs. image
I need to use an image to submit a form that contains the SSRS parameters that get passed into the report.
Is there any way to get SSRS to not take "input type=image..." as a parameter along with all …
1
vote
1answer
36 views
How to pass a MySQL database function as a query parameter from c#
Let me explain a little.
Image you have the flowing MySQL table:
CREATE TABLE test (
value DATETIME
);
Currently I am doing something like this:
command.CommandText = "UPDATE test SET value = …
0
votes
2answers
51 views
pass parameter by link_to ruby on rails
Hi
I have this line of code:
<%= link_to "Add to cart", :controller => "car", :action => "add_to_cart", :car => car %>
when im in the add_to_cart method...how can i call the :car …
0
votes
4answers
166 views
How in C# to pass a name of the object as a parameter to function?
I have the code that change the state of boolean property on mouseclick, depending on name of the clicked object:
private void Grid_MouseLeftButtonDown(object sender, MouseButtonEventArgs e)
{
…
1
vote
1answer
35 views
ASP page not receiving POST parameters
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 …
1
vote
4answers
74 views
Overload with generic type parameter instead?
I'd like to add a generic type method DoSomething<T>, but for backwards compatibility, I want it to simply pass the type parameter for the generic type from an existing method with the same …
0
votes
1answer
37 views
Retrieve SqlCommand/OleDbCommand query after inserting parameters?
Is there any way to access the prepared statement as sent to the SQL server?
Dim params(1) As OleDb.OleDbParameter
params(0) = New OleDb.OleDbParameter("@ID", …
0
votes
2answers
28 views
Mock an out paramter with moq or rhino mock or something else
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$
1
vote
3answers
62 views
Nice way to pass parameters to PDO
Positional parameters become a nightmare when dealing with more than 3 or 4 parameters. Named parameters are verbose. I'm thinking of doing this:
query("SELECT * FROM users WHERE username = ", …
