1
vote
3answers
22 views
insert into sql query in wpf
Hello everyone i am new in wpf. so i have got problems with it. if you help me, i will be so pleased. thanks everyone in advance.
My problem is, can not insert into name inside database in wpf. how …
0
votes
1answer
27 views
Object To DataView or DataSet or DataTable and back to object
We have a mish-mash app with a legacy module that still uses DataSets, DataViews and DataTables however we have most of the the databases ORMed except the DB for this Module. I was wondering if …
2
votes
8answers
101 views
Can I temporarily store data in my C#.Net app to reduce the need for calls for data from SQL Server?
I created a C#.net app that uses dates from a sql server 2008 database table. Is there a way for me to temporarily store the data so that my program does not have to repeatedly make server calls for …
1
vote
5answers
115 views
Easy way to escape sql strings?
In my code i have this everywhere
command.Parameters.Add("@name", DbType.String).Value = name;
Is there an easier way? I would love to do something like
command.command.CommandTextFn("insert into …
0
votes
1answer
44 views
I Can’t create an ado.net transaction in IronPython
Hi,
I'm trying to create an ado.net transaction in IronPython in asp.net and I'm getting the following error
"couldn't find member Rollback"
I tried to see what's different in my ironpython ado.net …
0
votes
2answers
50 views
How do i escape sql and get the text instead of put it in a query?
I want to generate querys but i wont be executing. Just showing the text query after everything has been escape. I cant figure out how to get the escape value. I searched the object browser for escape …
-1
votes
5answers
32 views
Need Help about ADO.Net Transaction
I develop C# window application with Microsoft SQL Server 2005 sp3.
My Application has ploblem while one of client save Order Document.
Another client cannot select data from Order table util saving …
-1
votes
1answer
28 views
How to sort a binding source with joins?
I have a table called Tenants, and it has a field called PropertyID and UnitID.
I also have a binding source for this table (Tenants), however I want it sort it, but the values I want to sort it by …
1
vote
1answer
24 views
Does GridView automatically append values “ASC” or “DESC” to the value of sortExpression parameter?
When GridView implements sorting, does it automatically append string values “ASC” or “DESC” to the value of sortExpression parameter? If so, then based on what criteria does it “decide” when to …
0
votes
1answer
17 views
Why doesn’t Client-initiated Ado.Net transaction allow…?
Hi
If we’re using client-initiated Ado.Net transactions, then when we try to execute a command that is not a part of current transaction while the transaction is underway, we’ll receive an error. …
1
vote
2answers
25 views
Using Multiple T-SQL Statements in ADO.NET
Scripting in management studio with T-SQL works very well, but I am having a question about ADO.NET.
I am able to code a simple select statement in ado.net.
How to use the set statement in ado.net ?
…
1
vote
1answer
21 views
RAISERROR and returning error message to the calling application
Hi
Assuming Asp.Net app calls procedure dbo.ApprovePost and @@ERROR contains a value greater than 0, then the following code will be executed:
CREATE PROCEDURE dbo.ApprovePost
…
IF …
1
vote
1answer
37 views
DataSet with multiple tables
Hello,
I have a little problem. I don't know how to use the DataSet in VB.NET correctly.
In Visual Studio 2008 I created a DataSet called Network. For the DataSet I took two tables from my database, …
0
votes
1answer
33 views
SqlCeResultSet Problem
Hello,
I have a SmartDevice project (.NetCF 2.0) configured to be tested on the USA Windows Mobile 5.0 Pocket PC R2 Emulator. My project uses SqlCe 3.0. Understanding that a SmartDevice project is …
0
votes
3answers
22 views
Why Returning false even if executes the stored procedure
public bool Update()
{
SqlParameter[] param = new SqlParameter[5];
param[0] = new SqlParameter("@EmpId", EmpId);
if (string.IsNullOrEmpty(Name))
…
