Tagged Questions

4
votes
8answers
4k views

C# static database class?

I have a Database class which contanins the follwing methods: public bool ExecuteUDIQuery(string query) // UDI = Update Delete Insert public bool ExecuteSelectQuery(string query) public bool ...
1
vote
3answers
269 views

Reading parts of large files from drive

I'm working with large files in C# (can be up to 20%-40% of available memory) and I will only need small parts of the files to be loaded into memory at a time (like 1-2% of the file). I was thinking ...
1
vote
3answers
100 views

Modernising a 'Hand Rolled' Data Access Library

There's this web app, which relies on a sort of data access library (simple data objects and associated objects to perform CRUD operations on them) which is generated directly from the database. So ...
1
vote
1answer
174 views

How can i handle connections to different databases inside a single transaction scope

I'm trying to access data from two different databases inside a transactionscope. But while executing any query on the second database , i get "The operation is not valid for the state of the ...
1
vote
1answer
390 views

SqlBulkCopy with SqlHelper class

I've installed DataAccessApplicationBlock.msi and I got the Microsoft.ApplicationBlocks.Data.dll file into my bin folder. I found every other sqlhelper methods except ExecuteBulkCopy. How do I add ...
1
vote
2answers
363 views

Implement storage of data between calls? (C# - WPF)

I have an ALPHA application which allows you grab an obfuscated font from and XPS file and store the .odttf file for use in Silverlight. The application "works" as in it does what it says on the tin, ...
1
vote
5answers
938 views

Most Efficient Way To Get A Row Of Data From DB In ASP.NET

I'm writing a method to return an 'asset' row from the database. It contains strings, ints and a byte array (this could be an image/movie/document). Now for most row access I use the following ...
0
votes
1answer
560 views

Thread was being aborted In WebService and ASPX page

I'm having the Thread was being aborted exception in this simple code, running on IIS 6 when I run a long query. Thread was being aborted. StackTrace: at ...
0
votes
4answers
387 views

Efficient way to select default value in t-sql when no results are found

OK, this is a pretty simple problem, but I'm curious: what is the best approach in terms of efficiency and style? I often need to select data in MS SQL, but am looking for a single result. If there ...
0
votes
3answers
252 views

SQL Compact allow only one WCF Client

I write a little Chat Application. To save some infos like Username and Password I store the Data in an SQL-Compact 3.5 SP1 Database. Everything working fine, but If another (the same .exe on the ...
0
votes
2answers
115 views

Server control/data access best practice?

Is it better to access data from within the web parent app and pass the necessary data to the control and back via properties, or pass a reference or url pointer (of webservice) to control and let it ...
0
votes
2answers
2k views

Enterprise Library Data Access Block Transaction Management Best Practice

What is the best practice for processing a batched series of CRUD operations in a single transaction with the Enterprise Library Data Access Block that it won't be esclated to a distributed ...
-2
votes
4answers
66 views

Return an int instead of a datatable

How would I change my syntax below to return an Int instead of a data table. I dont need a datatable its just one value that will be returned in the query. New to this whole data access thing. Thanks ...