I\'m doing the following to get the identity of an inserted row: SqlConnection con = new SqlConnetion(\"connectiontxc\");
I\'ve been programing with SQL Server and C# for quite some time and I have some code that I need to change to work with Oracle:
I have a stored procedure that recives as paramter as OUTPUT paramter. The store procedure sets its value. I have the following code in C# application. But I am not getting the value in application (t
I am working in visual studio 2010 creating a ASP web application. I am trying to implement a search function with a grid view, where I will be passing in an ADO select command into a dataset and fill
I have a oracle database. I use the OracleDataAdapter(Oracle.DataAccess.dll) for select, up开发者_如何转开发date, insert, delete operations. I don\'t set any (table) locks on my own(I only start a tra
I have loaded data from the database to the dataset named myDS. myDS contains several tables. Then I bound one of those tables (named Inventory) into the datagridview named dataGridViewInventory and e
We develop a set of industrial applications that use SQL Server. As demand expands, customers want to use our applications with their own RDBMS开发者_StackOverflow such as Oracle, MySQL and others.
I was just wondering how to pass SQL t开发者_如何学运维o crystal report. Right now I am only able to load a premade report onto my crystal report viewer. Now, I want to be able to put in parameters fo
Our application is using SQL Server 2005 as the database. We are using a history database to which the actual database is putting values using trigger.
I have to Declare a SqlParameter[]. It\'s size is dynamic based on the dropdownlist selection. I have implemented a method as below