Tagged Questions
The sql-parametrized-query tag has no wiki summary.
16
votes
6answers
3k views
In PHP with PDO, how to check the final SQL parametrized query?
In PHP, when accessing MySQL database with PDO with parametrized query, how can you check the final query (after having replaced all tokens)?
Is there a way to check what gets really executed by the ...
2
votes
4answers
456 views
Why is using a parameterized query to insert data into a table faster than appending the values to the query string?
Why is using a parameterized query to insert data into a table:
string queryString = "insert into product(id, name) values (@id, @name)";
faster than appending the values to the query string:
...
1
vote
2answers
121 views
Is there any safe way to parameterize database names in MySQL queries?
I'm writing a little python script to help me automate the creation of mysql databases and associated accounts for my personal projects. Part of this script is a function that takes the database name ...
1
vote
2answers
2k views
Python MYSQL update statement
I'm trying to get this Python MYSQL update statement correct(With Variables):
cursor.execute ("UPDATE tblTableName SET Year=%s" % Year ", Month=%s" % Month ", Day=%s" % Day ", Hour=%s" % Hour ", ...
0
votes
1answer
55 views
Declaring a variable for using as parameter in stored mysql procedure
I'm trying to implement a simple counter which is passed as parameter in several statements in a SQL query (see below). I have the following test environment
CREATE TABLE `test`.`TableA` (
`ColumnA` ...
0
votes
1answer
27 views
Parametrizing SQL script
I have to make
SELECT column1,column2
INTO OUTFILE 'out_1.csv'
FROM table1
WHERE column1.name = '1'
SELECT column1,column2
INTO OUTFILE 'out_2.csv'
FROM table1
WHERE column1.name = '2'
SELECT ...
0
votes
0answers
70 views
C#.Net SqlParameterCollection To Sql String ready for sp_execsql
Can anyone help me to convert SqlParameterCollection to a string that is ready to be executed on sqlserver without using SqlParameters?
This is actually stupid. But the system I need to write code ...
0
votes
1answer
70 views
Problem with adding SQL paramerters from data access Layer in c#
First I am giving examples of two methods
public static List<FormGridEntity> GetAllCandidatesByProgram(string programShortName)
{
List<FormGridEntity> formGridEntities = null;
...
0
votes
1answer
229 views
Parameterized queries with psycopg2: SELECT from a Python list
Given a large (~10,000) list of integers in Python, How do I efficiently SELECT all items from a table whose id is in the list?
I've tried:
>>> lst2
[{'id': 97600167}, {'id': 97600168}, ...
0
votes
0answers
73 views
Prepared Statements
Yes, I know it's been asked a lot, however the previously asked scenarios don't apply to me, so here goes...
In essence, I'm looking to create a function (in a class) that runs an SQL query on a ...
0
votes
1answer
473 views
Devart Oracle provider direct mode issues with parametrized queries
I'm having some bizarre issues with parametrized queries in direct mode.
Basically if I perform an insert on a table that already contains a unique row I get an insert exception which is expected. ...
-1
votes
2answers
65 views
SQL Stored Procedure to return results with multiple parameters
I want to create a stored procedure that returns the results of a search for "similar records". The stored procedure i currently have is as follows
CREATE PRODECURE [dbo].[viewSimilarRecords]
...
-5
votes
1answer
49 views
unable to display data using parametrized query with c#
I am trying to display the data using parametrized query
try
{
SqlConnection xconn = new SqlConnection();
xconn.ConnectionString = @" Data Source=servername; Database=master; Trusted_Connection=yes ...