Hi;
We have a select that does work on Oracle, but does not work when going
through the OracleConnection ADO.NET connector. One column name is 28 chars
long and the other is 30 so they should be ok.
Does the connector count table + column name length when we do table.column
in the selec...
more >>
Transactions with .NET 2.0.
If I code this in C# method:
Customer objCust = new Customer();
using(TransactionScope scope=new TransactionScope())
{
objCust.UpdateData(); // updates customer record via stored
procedure with a standard excutenonquery
scope.Complete();
}
...
more >>
Hi all,
I have a TableAdapter with a connection to an SQL Server database that uses
stored procedures to insert and update records. Problems occur when I
attempt to insert unicode (Chinese) characters in the database; all that
comes through is question marks. The parameter to insert the string...
more >>