The parameterization tag has no wiki summary.
0
votes
3answers
64 views
(How?) can I parameterize a Java class with multiple, orthogonal interfaces?
Is it possible to specify multiple interfaces for a generic type in Java?
Specifically, I am working with an existing library (NASA World Wind) that has a number of interfaces for its objects. I ...
-1
votes
3answers
57 views
Preparing SQL query
In my PHP document, I got a SQL query looking like this:
if(isset($_GET['id']))
{
$id = $_GET['id'];
$q = "SELECT * FROM `objekt_t` WHERE `id`='" . $id . "'";
$row = mysqli_query($con, ...
0
votes
0answers
10 views
pytest test needs parametrization at collection phase and at setup time
I have some tests which I'd like to parametrize using some arguments which need the parametrization to happen during collection phase and some which need it to happen at setup time. I'm unable to use
...
1
vote
2answers
75 views
type parameterization of Scala
Take a concrete method for instance,
def df(f: Float => Float, dt: Float) = (t: Float) => f(t + dt) - f(t)
It can be compiled and works. However, when I tried to define it in a generic way,
...
0
votes
1answer
79 views
More concise way of adding parameters to vendor independent IDataParameterCollection?
On every ADO.NET connector we have AddWithValue and hence adding parameters was a breeze.
I am surprised that that overload is not available on IDataParameterCollection or even on ...
2
votes
1answer
125 views
OOP: proper class design for database connection in derived child class?
I'm coding a long-running, multi-threaded server in C++. It receives requests on a socket, does database lookups and returns responses on a socket.
The server reads various run information from a ...
0
votes
1answer
152 views
pytest parameterize decorator not working with **kwargs
In my testing code, I have the following:
@pytest.mark.parametrize(("title", "description", 'site'), [
("abc", "this is a proper description","minecraft.net"),
...
0
votes
1answer
457 views
Parameterization using Excel in Selenium Webdriver with C#
What C# code should i use for parameterization in webdriver using Excel?
1
vote
2answers
78 views
Scala parameterization of my array assumes a String?
I've read up a little on Manifests and the erasure-avoidance techniques required to allow Scala to do things like "new Array[Array[T]]", but I'm a little stumped with this one....
I've got a method ...
1
vote
1answer
157 views
What is a geometry image?
What are geometry images and how can I create them ?
It's a little weird ...
I need to create geometry images from mesh models and vice versa.
Sample Geometry Image + Normal Map
3
votes
1answer
189 views
Forced Parameterization
What reasons would you NOT choose to enable forced parameterization over simple parameterization for ad-hoc queries in SQL Server?
Is there a performance overhead? If so would it not be offset by the ...
1
vote
1answer
57 views
Mysqli parameterization with named values and specific types
I'm learning about parameterization and I see some queries use this notation :varname in the query being prepared and then binding like so: bindParam(':varname', $varvalue).
Then I see some where ...
0
votes
3answers
528 views
Java passing generic class with parameterzied enum as parameter to another generic object
I am trying to implement parameterized class in Java with enum as a type parameter. Everything works fine, except, if you look at the code below, there is that anonymous class Car.Creator with ...
0
votes
1answer
98 views
Conditionally parameterize SQLite query in AIR
How can I conditionally parametrize a SQLite database in AIR?
For example this query:
//selectedID is the ID I want to select
query.text = "select * from table where id=@ID";
...
3
votes
1answer
3k views
How to run parametrized job after another (without params)
I have a job in Jenkins which has 2 params. I want to run another plan, which has no params and from that plan, launch the existing plan as many times as required.
The new plan needs to be scheduled ...
4
votes
3answers
593 views
Is it possible parameterize a compiled Java XPath expression ala PreparedStatement style semantics?
Is it possible either with the stock JAX-P xpath expression engine or another compliant engine to compile an xpath expression that would allow for parametrization?
I'm looking to see if is if there ...
1
vote
2answers
163 views
Getting the type of parametrization of an instance of a parametrized class in scala
Im quite new in Scala.
I need to get the parametrization of a class.
How can I do this ? the class looks like this:
class OutPort[T](name: Symbol, owner: Component) extends Port[T](name)
i got ...
2
votes
2answers
123 views
meta multiple operator overloading
The question is if I can find a way to make a parametrized overloading of an operator i.e. instead of
template <class T>
class A
{
private:
T m_var;
public:
operator T () ...
0
votes
1answer
522 views
How do you make a parametric plot of a table of functions in Mathematica?
I am trying to generate a family of curves in a parametric plot (since the function is giving x as a function of y), but I am getting either nothing or clearly incorrect functions. Is there something ...
3
votes
2answers
236 views
Scala: How to make requirements of the type parametres of generic classes?
I'm creating some parameterized classes C[T] and I want to make some requirements of the characteristics of the type T to be able to be a parameter of my class. It would be simple if I just wanted to ...
0
votes
3answers
85 views
SqlCommand Parameter eating +
I have this:
string a = "a+a";
SqlCommand q = new SqlCommand("SELECT * FROM table WHERE a = @a", conn);
q.Parameters.AddWithValue("@a", a);
But the parameterization totally erases the + from a, ...
4
votes
2answers
924 views
Generic object load function for scala
I'm starting on a Scala application which uses Hibernate (JPA) on the back end. In order to load an object, I use this line of code:
val addr = s.load(classOf[Address], ...
0
votes
1answer
653 views
VBScript building a parameterized query
Is it possible to build a VBscript parameterized query without knowing the names, types or number of arguments beforehand?
I'm trying to do this:
set cmd = Server.CreateObject("ADODB.Command")
...
8
votes
4answers
3k views
Parameterized queries with psycopg2 / Python DB-API and PostgreSQL
What's the best way to make psycopg2 pass parameterized queries to PostgreSQL? I don't want to write my own escpaing mechanisms or adapters and the psycopg2 source code and examples are difficult to ...
0
votes
1answer
69 views
Storing parameterized definitions of sets of elements and single pass queries to fetch them in SQL
Suppose a database table containing properties of some elements:
Table Element (let's say 1 000 000 rows):
ElementId Property_1 Property_2 Property_3
------- ---------- ---------- ...
0
votes
2answers
604 views
Example models with texture coordinates?
I'm writing a small OpenGL demo and I would really like to show some example models with textures. The trouble is I have a really tough time finding such models.
There are tons of repositories of 3D ...
1
vote
2answers
399 views
tool for detecting non-parametrized sql in java jdbc code
I'm looking to inspect SQL statements in Java/jdbc code to ensure that the SQL to be executed is of acceptable quality. Neither PMD not Findbugs appears to have JDBC or sql rules. I could use p6spy to ...
