Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
2answers
72 views

viewing exact sql after parameter substitution C#

Is there a way to access the CommandText just after it gets executed? I have the following code: cmd = new OracleCommand(sql.ToString(), conn); cmd.Parameters.Add(new OracleParameter("@parm", ...
3
votes
4answers
581 views

OracleCommand command, ExecuteNonQuery issue

I have to clear certain tables in the oracle database however when I'm having issues with running the following code public static void ClearDataTables(IList<string> tableNames) { ...
1
vote
2answers
996 views

ORA-01036: illegal variable name/number

I retrieve data from Oracle database and populate a gridview. Next, I try to run a query to select some data but I get an error. Here is the code: Db.cs: public static OracleConnection ...
1
vote
1answer
169 views

OracleCommand seems to convert literal dates

I built a small query tool for Oracle using OracleCommand and OracleDataAdapter. Users just input a full query (no parameters), execute and the results are shown in a datagridview. So far so good, ...
1
vote
2answers
906 views

Is there a way to use a generic DbCommand to do an Asynchronous update?

When using a generic DbCommand to perform an update, it will hang indefinately if the row being updated is locked. The underlying connection used is is Devart's Oracle provider, ...
0
votes
1answer
161 views

Parameterized oracle command c#

I have a problem using parameterized oracle command. The command seem to recognise all the string parameters (:Id,:CreateUser) but not the character parameter(:Active). string qry = @"Insert into ...
0
votes
2answers
1k views

OracleCommand Update does not commit changes

I am using the following code to update a table in oracle. It executes but the update does not commit. If I run the query with Oracle SQL Developer it works fine. What am I missing? SELECT statements ...
0
votes
1answer
463 views

OracleCommand execution blocks if has OracleDependency

I have the following code: OracleConnection conn = new OracleConnection(connString); OracleCommand command = new OracleCommand("select * from testtable", conn); conn.Open(); OracleDependency.Port = ...
0
votes
1answer
87 views

Grouping OracleCommand in .NET

Is it possible to group OracleCommand objects and iterate through each OracleCommand in the collection? Could someone post a sample code in achieving this? Thanks. Angelo