Tagged Questions
The parameterized tag has no wiki summary.
20
votes
8answers
5k views
Change test name of parameterized tests?
Is there a way to set my own custom test case name when using Parameterized tests in Junit4?
I'd like to change the default "[Test class].runTest[n]" to something meaningful...
16
votes
4answers
4k views
Parameterized Queries with LIKE and IN conditions
Parameterized Queries in .Net always look like this in the examples:
SqlCommand comm = new SqlCommand("SELECT * FROM Products WHERE Category_ID=@categoryid", conn);
...
6
votes
4answers
344 views
Any way to access the type of a Scala Option declaration at runtime using reflection?
So, I have a Scala class that looks like this:
class TestClass {
var value: Option[Int] = None
}
and I'm tackling a problem where I have a String value and I want to coerce it into that ...
6
votes
4answers
1k views
How do I use paramertized generic types in an inner class?
I am trying to implement an inner class that has generic parameterized type.
Here is my code (short version):
public class AVLTree<T extends Comparable<? super T>> implements ...
6
votes
6answers
786 views
Parameterized SQL Columns?
I have some code which utilizes parameterized queries to prevent against injection, but I also need to be able to dynamically construct the query regardless of the structure of the table. What is the ...
5
votes
2answers
179 views
Embedded SQL vs Dynamic SQL
I am currently doing a *cough*Oracle*cough* database subject. The lecturer is introducing embedded SQL as the way you get other languages (e.g. C, C++) to interact with the (Oracle) database.
I have ...
5
votes
5answers
316 views
Parameterized SQL statements vs. very simple method
When I started to write the first SQL-Statements in my programs I felt quite comfortable with protecting myself against SQL-Injection with a very simple method that a colleague showed me. It replaced ...
5
votes
1answer
109 views
Strange behaviour with parameterized method on abstract class
Can someone tell my why this gives a compile error? I don't see why the cast to A in the second for-loop causes strings() to return a general List of Objects.
import java.util.ArrayList;
import ...
5
votes
4answers
413 views
SQL Server query plan differences
I'm having trouble understanding the behavior of the estimated query plans for my statement in SQL Server when a change from a parameterized query to a non-parameterized query.
I have the following ...
4
votes
1answer
1k views
Prevention against SQL Injection in Hibernate
I have used hibernate to interact with my database, now i wanted to make my database layer secure against SQL Injection, so i did some research i ofund out that my queries should be parameterized, ...
4
votes
5answers
458 views
SQL Server Performance of Parameterized Queries with leading wildcards
I have a SQL 2008 R2 Database with about 2 million rows in one of the tables and am struggling with the performance of a specific query when using parameterized SQL.
In the table, there's a field ...
4
votes
2answers
2k views
Hudson: how do i use a parameterized build to do svn checkout and svn tag?
I'm setting up a parameterized build in hudson v1.362. the parameter i'm creting is used to determine which branch to checkout in subversion.
I can set my svn repository url like this: ...
4
votes
2answers
2k views
Parameterized queries WITHOUT stored procedures?
Every sample I've seen uses stored procedures. I've adopted an old application written in Classic ASP that uses inline SQL. This is an obvious issue, so I need to convert it to safer code. The ...
4
votes
1answer
424 views
SubSonic 3 and Linq Parameterized Queries
We are currently using SubSonic 3.0.0.2 and playing about with the Linq for it, we've noticed that the underlying SQL is not parameterized.
I'm aware that the query tool is and we can work with that ...
3
votes
1answer
79 views
In clojure, how do you pass a list to a parameterized function (&more)
Say I have function:
(defn foo [something & otherthings]
(println something)
(println otherthings))
evaluating
(foo "ack" "moo" "boo")
gives me :
ack ...
3
votes
1answer
141 views
Parameterised Modules in Erlang
I was going through mochiweb source code and got to see something i never used before. The module declaration especially in mochiweb_request and mochiweb_response modules found in the mochiweb http ...
3
votes
3answers
100 views
Java: parameterizing Map object
I have the following global variable:
private Map<String,List<String>> network;
I instantiate it in my constructor like this:
network = new ...
3
votes
2answers
153 views
How can I access a Java constructor in a generic way?
I have a static builder method for a class "Model" that takes a JSON string and returns an ArrayList of Models. I would like it refer to the Model's constructer generically so that subclasses can ...
3
votes
2answers
680 views
Is C++ OTL SQL database library using parameterized queries under the hood, or string concat?
I've been looking at the OTL (Oracle, Odbc and DB2-CLI Template Library) for C++ database access. I'm unsure of whether the query I pass in is converted to a parameterized query for the underlying ...
3
votes
3answers
682 views
Is there a way to create a parameterized query or stored procedure that accepts <= N parameters?
Suppose I have a search screen that is intended for looking up items. There are various optional search options on the screen that will cause the SQL query statement to vary.
Here are some example ...
3
votes
3answers
811 views
How do I parameterize an extended Collection
I've been trying to extend the ArrayList class without much success. I want to extend it, and be able to parameterize it.
So normally you have something like
ArrayList<SomeObject> list = new ...
2
votes
3answers
88 views
SQL Parameter Slows Down Query
I have a query which I'm using with SQL Server 2008R2 via ADO.NET. When I use a LIKE clause inline, it works in less than a second, with 5 rows returned from 2 million. If I declare the paramater as I ...
2
votes
4answers
53 views
A way to see query after parameters are applied?
In a C# application, I'm building a query by creating a query string with parameters, then to the command adding the parameters and their values. For example:
string query = "UPDATE USERS u SET ...
2
votes
2answers
83 views
How to inspect a Parameterized method?
I would like to convert a Number form a String with such a method :
class MathUtils{
public static <T extends Number> T convert(String str){
try{
//convert str depending on ...
2
votes
1answer
168 views
Migrate Log4J log.debug statements to SLF4J's parameterized messages?
I have around 400 of production Java source code files with around hundred to twenty thousand lines of codes each to change out from Log4J String concatenation to SLF4J's parameterized logging.
...
2
votes
4answers
163 views
Type parameterized arithmetic?
Trying to think of a way to subtract 5 minutes from 2 hours.
It doesn't make sense to subtract 5 from 2, because we end up with -3 generic time units, which is useless. But if "hour" is a subtype of ...
2
votes
1answer
709 views
How to avoid slow down on Sql Server 2005 parameterized queries build from C#
I'm building a complex query to show some statistics results in a web view. The view can have several different filters depending on the user's choice. Also, there is the possibility to use wildcards. ...
2
votes
3answers
2k views
[zend][db] fetchAll with multiple variables
I'm trying to use fetchAll on a query that has 2 variables. I can't figure out the syntax.
I can manage with only 1 variable:
$sql = "SELECT * FROM mytable WHERE field1 = ?";
...
2
votes
6answers
305 views
Are input sanitization and parameterized queries mutually exclusive?
I'm working updating some legacy code that does not properly handle user input. The code does do a minimal amount of sanitization, but does not cover all known threats.
Our newer code uses ...
2
votes
4answers
219 views
How do I update selective fields in SQL (leaving some unchanged)?
I would like to update a record with two dates, leaving existing data intact if I do not have a new value to update with.
Here is a sample table record:
id last_foo last_bar
-- ---------- ...
2
votes
2answers
156 views
PHP: prepared statement, IF statement help needed
I have the following code:
$sql = "SELECT name, address, city FROM tableA, tableB WHERE tableA.id = tableB.id";
if (isset($price) ) {
$sql = $sql . ' AND price = :price ';
}
if (isset($sqft) ) {
...
2
votes
3answers
894 views
parameterized query in ms access 2003 using vba
Ok. I want to use parameterized queries to avoid dealing with embedded double or single quotes (" or ') in my data.
As a simple example, what would the VBA code look like for the parameterized ...
2
votes
4answers
333 views
Why can't I use wildcard with methods receiving a parameterized argument?
For example, I use a method Measure.doubleValue(Unit<?> unit) which returns the double value of a measurement, expressed in the specified Unit. If I pass a Unit<?> variable to it, I get ...
2
votes
3answers
232 views
What's the best way to choose a table name dynamically at runtime?
I am using MySQL Connector/Net and I want to write a query against a table whose name will be specified at runtime.
This example is off the top of my head (not tested):
public class DataAccess
{
...
2
votes
2answers
3k views
Table-Valued Functions in ORACLE 11g ? ( parameterized views )
I've seen discussions about this in the past, such as here. But I'm wondering if somewhere along the line, maybe 10g or 11g (we are using 11g), ORACLE has introduced any better support for ...
2
votes
4answers
212 views
How do SQL parameters work internally?
A coworker and I were browsing SO when we came across a question about SQL Injection, and it got us wondering: how do parametrized queries work internally? Does the API you are using (assuming it ...
2
votes
6answers
822 views
Java List parameterized?
I am quite new to Java ...
I wrote a class called DLPFile
which is basically a container of other objects like Strings, ints, floats, etc.
When putting my files into a List and then saving it in my ...
2
votes
8answers
1k views
How should I pass a table name into a stored proc?
I just ran into a strange thing...there is some code on our site that is taking a giant SQL statement, modifying it in code by doing some search and replace based on some user values, and then passing ...
2
votes
4answers
3k views
ASP Classic Named Paramater in Paramaterized Query: Must declare the scalar variable
I'm trying to write a parameterized query in ASP Classic, and it's starting to feel like i'm beating my head against a wall. I'm getting the following error:
Must declare the scalar variable ...
2
votes
4answers
8k views
Parameterized Queries (C#, Oracle): How to produce a more readable representation?
I am using parameterized queries in my C# code to interact with an Oracle database. What can I do to log the statements in a more readable fashion?
Suppose I have a parameterized query like:
INSERT ...
1
vote
2answers
54 views
java: add object to new ArrayList without need to parameterize the list
I need to add object to new ArrayList:
private Map<String,List<MyObject>> populateMapFromList2(List<MyObject> dataSourceList){
Map<String,List<MyObject>> moMap = new ...
1
vote
1answer
94 views
Simple cache manager using Guava in Scala parameterized (generics) type error
I am pretty new to Scala and still do not understand generics that well. Consequently, I cannot figure out why the compiler hates me with type mismatch errors.
I am using Google's Guava library to ...
1
vote
2answers
70 views
Instantiate parameterized class using a field type of another class
I would like to use a type which I get from a class' field (using reflection) to instantiate a class with generics.
Note: I omitted the exceptions hoping for easy reading.
public class AClass {
...
1
vote
0answers
89 views
How to display a name/label for each Parameterized Junit test in Eclipse [closed]
Possible Duplicate:
Change test name of parameterized tests?
I have a JUnit 4 test case class that uses the Parameterized style. Everything runs as expected. My one complaint is that the ...
1
vote
1answer
68 views
ScopedTypeVariables are sometimes in scope, sometimes not
I'm trying to figure out when my type parameters will be in scope. I have what appears to me to be two identical examples, but one doesn't work.
{-# LANGUAGE ScopedTypeVariables #-}
class ...
1
vote
2answers
56 views
Parameterized table name
this is my problem: I want to check rows in a table which name is parameterized, something like table_X. The value of X comes from another table, so for example in my main table I have a column c_id ...
1
vote
1answer
102 views
Plot a parametric equation in Matlab
I have two sets of data: [t1 ; x] and [t2 ; y], where the ts are in the same range for both, but possibly taking different values. A simple example:
[t1 ; x] =
1 2 4
1 4 16
...
1
vote
2answers
77 views
Parametrized table name in SQL query
I'm using Vb2005 to hit a SQL server. i have a pretty complicated query that hits identically structured databases on the server. I was looking into parameterizing the FROM clause but cant seem to do ...
1
vote
1answer
81 views
Teamcity - parametrized builds
Is there any way to configure parametrized builds in team city?
I need to pass a few parameters before actually triggering the build. I have multiple releases for a project and I need to pass the ...
1
vote
5answers
114 views
Can an interface be added to existing .NET types?
My example below involves 2 NET classes which both contain the method CommonMethod. I would like to design MyMethod that can accept either class (Using ) while retaining the functionality common to ...