0
votes
4answers
253 views
Scheduling parameterized reports in Crystal Reports Server
I'm trying to set up a report to run monthly in Crystal Reports Server 2008 that will give me the next month's Affordable Care Plan termination dates. However, as far as I can tell …
5
votes
4answers
68 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 …
0
votes
1answer
56 views
Use NamedParameterJdbcTemplate to update array field
I have a double precision array field dblArrayFld in a table myTable and I'd like to update it using Spring's NamedParameterJdbcTemplate (I'm using Postgres).
I'm running code lik …
1
vote
3answers
76 views
Parameterized Query: Check if field is in array of values in SELECT statement
I'm trying to configure a parameterized query to the effect of:
SELECT field1 FROM myTable WHERE field2 IN (1,2,3,4)
The database I'm using is Postgres.
This query run successf …
2
votes
2answers
217 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 s …
0
votes
3answers
91 views
Binding params with Kohana’s Database library
I know I can bind params in Kohana like this
$this->db->query('SELECT * FROM products WHERE id = ?', array(14));
But is there a way to do it with identifiers (or whatever …
2
votes
4answers
62 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 us …
1
vote
4answers
2k 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 …
1
vote
1answer
30 views
Are all Refactorings parameterized?
The question is about refactorings. Consider a rename method refactoring. This refactoring can be visualized as meta-method that takes old and new names, and changes the old method …
1
vote
2answers
83 views
If I pass an object to a thread via ParameterizedThreadStart, can I access it later?
If I start a thread in the following manner
Thread newThread = new Thread(new ParameterizedThreadStart(MyThreadMethod));
Object myObject = new Object();
newThread.Start(myObject); …
2
votes
3answers
250 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 …
2
votes
6answers
220 views
Java List parameterized?
Hi,
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 …
0
votes
1answer
188 views
How to set query parameters in MySQL Query Browser?
Can the MySQL Query Browser set parameters of a parameterized query? If so, how? I tried populating the Parameter Browser tab but it doesn't seem to actually set parameters when …
0
votes
1answer
54 views
performance of parameterized queries for different db’s
A lot of people know that it is important to use parameterized queries to prevent sql injection attacks.
Parameterized queries are also much faster in sqlite and oracle when doin …
1
vote
2answers
91 views
Plain SQL output from NHibernate
I need:
Plain SQL that I can run without modification with sqlcmd.exe to insert testdata into testdatabase.
I have:
Service calls and entities to generate the insert operations w …
