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 t
SELECT DISTINCT MonthName(Month([Date])) AS [Month], tblSupportCalls.System, Count(tblSupportCalls.System) AS [Total for System], Year([Date]) AS [Year]
We\'re converting from ColdFusion to ASP.NET 4.0 and we just don\'t know which route to take with setting up our classes.
I\'d really like to 开发者_开发知识库give Entity Framework 4 Code First CTP a try with a greenfield app but I want to make sure that geo spatial searches will not be a problem before I do, or I\'ll go
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 generateddirectly from the database.
I am still very new to Actionscript and have an okay working knowledge of Flex.I am working on an AIR application that runs a SQLite database underneath.The database is only 3 tables (projects, items
I\'m having the Thread was being aborted exception in this simple code, running on IIS 6 when I run a long query.
So I have this general question of where should I have certain logic for example - var data=GetItems();
I\'m working on a iOS project and I\'m asking myself a question for a couple of days. My problem is simple: I have webservice calls which are synchronous. But I would like to do asynchronous calls. Bu
What is the appropriate time to use a SQLTransaction? I开发者_开发知识库 use them for all of my INSERT, UPDATE and DELETE statements.