Questions tagged [parameterization]

157 questions
0
votes
3 answers

(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 have a set of heterogeneous objects I am working with…
Phoebe
  • 2,774
  • 3
  • 22
  • 27
0
votes
1 answer

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 ------- ---------- ---------- ---------- 1 abc 1 …
Ville Koskinen
  • 1,266
  • 2
  • 15
  • 20
0
votes
2 answers

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 models in various formats but it seems that only a…
shoosh
  • 76,898
  • 55
  • 205
  • 325
0
votes
1 answer

Parameterization using Excel in Selenium Webdriver with C#

What C# code should i use for parameterization in webdriver using Excel?
Tasleem
  • 27
  • 2
  • 9
-1
votes
1 answer

Parametrize source folder directory or file path in JMeter

Is there any way to parameterize the CSV data file path or source directory path in JMeter?
Subodhya
  • 9
  • 4
-1
votes
1 answer

Generalizing my YoY quarterly percentage growth code to suit different data

I have written out a code that works for year over year quarterly percentage growth. However my code only works for the data i was using to write the code. I would like to be able to just run my whole code with data of different lengths and not have…
-1
votes
3 answers

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, $q) or die(mysqli_error($con)); while($r =…
Simon Carlson
  • 1,919
  • 5
  • 24
  • 35
1 2 3
10
11