Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
4answers
2k 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 ...
4
votes
2answers
699 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], ...
3
votes
3answers
78 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 ...
3
votes
2answers
176 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 ...
2
votes
2answers
101 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 () ...
1
vote
1answer
27 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 ...
1
vote
2answers
135 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 ...
1
vote
2answers
313 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 ...
0
votes
3answers
81 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
27 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"; ...
0
votes
1answer
225 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 ...
0
votes
0answers
54 views

Parameterizing session value which is having data in opensta

We are having the application which will hold the values in session and it is passed on to the database. I am trying to load test the application with openSTA tool. I need inputs regarding this. Is ...
0
votes
0answers
44 views

Ways to procedurally parametrize a 3d mesh

How do you procedurally parametrize a 3d mesh? For example - take a torus mesh, and you want to assign whether it spirals or cuts by assigning a numeric parameter... How do you apply the ...
0
votes
0answers
137 views

qmark parameterization using Python ourSQL with an IN(?)

I've tried to use qmark parameterization with ourSQL but no luck when it comes to using it to pass a list of items for an IN(). I haven't been able to find any documentation in regards to doing it ...
0
votes
1answer
278 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 ...
0
votes
3answers
56 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, ...
0
votes
1answer
299 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") ...
0
votes
1answer
57 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
442 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 ...