bind-variables Questions

3

Solved

I am using dynamic cursor for fetching data. Query that is being executed looks similar to: query := 'SELECT column1, column2 FROM my_table WHERE column1 LIKE ''%:bv1%'''; And the cursor its...
Liverwort asked 22/5, 2017 at 12:48

8

Solved

What does : stand for in a query? INSERT INTO MyTable (ID) VALUES (:myId) How does it fetch the desired value? Edit: Also what is that sign called? I wanted to search on google, but what's the ...
Sweat asked 1/2, 2010 at 15:54

7

Solved

I am having a hard time using the MySQLdb module to insert information into my database. I need to insert 6 variables into the table. cursor.execute (""" INSERT INTO Songs (SongName, SongArtist,...
Idiom asked 22/4, 2009 at 0:43

2

Solved

I am a Python newbie, I am having troubles in the use of bind variables. If I execute the code below everything works fine. bind= {"var" : "ciao"} sql = "select * from sometable where somefield = ...
Lanneret asked 30/9, 2015 at 14:27

1

Solved

I'm looking for a C# ODAC adaptation of the following Java technique, where code is able to bind an array of numbers (the array size can vary) into a non-PL/SQL SELECT statement and then use the re...
Predigestion asked 16/7, 2015 at 22:30

3

Can we use a bind variable in oracle inside a procedure or function ? I'm trying to update a bind variable inside my procedure. Can I do so in any case? if (condition) then :v_bind:=10; end if; ...
Vmail asked 6/3, 2011 at 10:34

2

Solved

After Googling a lot and not finding what I'm looking for I decided to ask this question. I'm using binding variables as demonstrated in this awesome article from 2005 titled The Values That Bind ...
Unseasoned asked 21/9, 2013 at 2:14

3

Solved

Succinct Version: I'm looking for a C++ OCI adaptation of the following Java technique, where code is able to bind an array of numbers (the array size can vary) into a non-PL/SQL SELECT statement ...
Mendelsohn asked 3/9, 2013 at 23:55

5

Solved

The Situation I have some trouble with my query execution plan for a medium-sized query over a large amount of data in Oracle 11.2.0.2.0. In order to speed things up, I introduced a range filter t...
Fortyfive asked 18/3, 2011 at 15:0
1

© 2022 - 2024 — McMap. All rights reserved.