Tagged Questions
The data-access tag has no wiki summary.
34
votes
13answers
3k views
What's Up with O(1)?
I have been noticing some very strange usage of O(1) in discussion of algorithms involving hashing and types of search, often in the context of using a dictionary type provided by the language system, ...
23
votes
10answers
15k views
How can I generate database tables from C# classes?
Does anyone know a way to auto-generate database tables for a given class? I'm not looking for an entire persistence layer - I already have a data access solution I'm using, but I suddenly have to ...
16
votes
7answers
2k views
What exactly is “persistence ignorance”?
Persistence ignorance is typically defined as the ability to persist & retrieve standard .NET objects (or POCOs if you really insist on giving them a name). And a seemingly well accepted ...
11
votes
11answers
7k views
What object mapper solution would you recommend for .NET? [closed]
There are many ORM solutions out there, so in your experiences what seems to be the best choice?
NHibernate or Subsonic, Genome,DLinq, LLBLGen - there seems to be a plethora of options, so pros and ...
10
votes
12answers
3k views
Generics in c# & accessing the static members of T
My question concerns c# and how to access Static memebers ... Well I don't really know how to explain it (wich kind of is bad for a question isn't it?) I will just give you some sample code:
Class ...
9
votes
7answers
2k views
LINQ To SQL entity objects as domain objects
Clearly separation of concerns is a desirable trait in our code and the first obvious step most people take is to separate data access from presentation. In my situation, LINQ To SQL is being used ...
9
votes
6answers
2k views
What are best practices to implement security when using NHibernate?
Traditionalist argue that stored procedures provide better security than if you use a Object Relational Mapping (ORM) framework such as NHibernate.
To counter that argument what are some approaches ...
8
votes
6answers
1k views
data access in DDD?
After reading Evan's and Nilsson's books I am still not sure how to manage Data access in a domain driven project. Should the CRUD methods be part of the repositories, i.e. ...
7
votes
2answers
364 views
Nhibernate: Who is responsible of transaction management in a non web application
Well in a web application a unit of work is responsible for the transaction management.
But what about a windows application?
As far as I know the repository is the connector between my data access ...
7
votes
7answers
355 views
Good practice to create extension methods that apply to System.Object?
I'm wondering whether I should create extension methods that apply on the object level or whether they should be located at a lower point in the class hierarchy. What I mean is something along the ...
7
votes
11answers
420 views
Is it bad practice to run tests on a DB instead of on fake repositories?
I know what the advantages are and i use fake data when i am working with more complex systems.
What if I am developing something simple and I can easily set up my environment in a real DB and the ...
5
votes
3answers
125 views
Overly accessible and incredibly resource hungry relationships between business objects. How can I fix this?
Firstly, This might seem like a long question. I don't think it is... The code is just an overview of what I'm currently doing. It doesn't feel right, so I am looking for constructive criticism and ...
5
votes
8answers
770 views
Controlling access to an internal collection in c# - Pattern required
This is kind of hard to explain, I hope my English is sufficient:
I have a class "A" which should maintain a list of objects of class "B" (like a private List). A consumer of class "A" should be able ...
5
votes
3answers
2k views
WCF DataContracts and underlying data structures
I am wondering what makes sense in relation to what objects to expose through a WCF service - should I add WCF Serialization specifications to my business entities or should I implement a converter ...
4
votes
3answers
81 views
marking BLL classes as static or?
I already have a layered data access design which works well. But i dont know if it is the most suitable implementation or not.
i simply want to know that BLL classes or methots should be static or ...
4
votes
6answers
138 views
How important is it for me to pool my connections?
It has been suggested to me that I rearrange my code to "pool" my ADO connections. On each web page I would open one connection and keep using the same open connection. But someone else told me that ...
4
votes
6answers
154 views
How do I create a generic overall .NET programming structure for my company?
I'm in a company that writes their own business data applications when there's no good off the shelf alternative. Most often it's
- a login screen
- some screens that are mostly visualizations of ...
4
votes
1answer
1k views
WCF SOA: CRUD Data Access Service…why bother (or is our design wrong)?
We have a Data Access service in our SOA WCF system. This service is responsible for doing CRUD (create, update, delete) operations on "system wide" database tables, and is also the source of this ...
4
votes
6answers
5k views
Execute multiple SQL commands in one round trip
I am building an application and I want to batch multiple queries into a single round-trip to the database. For example, lets say a single page needs to display a list of users, a list of groups and ...
4
votes
8answers
631 views
Why switch from ADO to ADO.NET?
I have some friends who are 'old-school' VB6 database developers and I was telling them about .NET and its features, specifically ADO.NET.
In our conversation, they brought up the following reasons ...
4
votes
3answers
1k views
Transactions for read-only DB access?
There seem to be very different opinions about using transactions for reading from a database.
Quote from the DeveloperWorks article Transaction strategies: Models and strategies overview:
Why ...
4
votes
2answers
2k views
simple jdbc wrapper
To implement data access code in our application we need some framework to wrap around jdbc (ORM is not our choice, because of scalability).
The coolest framework I used to work with is Spring-Jdbc. ...
3
votes
1answer
89 views
LINQtoSQL and Serialization
I am a newbie to LINQtoSQL. I opted to learn it because I didn't have much experience writing stored Procedures in SQL and thought that LINQtoSQL might be an alternative way to do data access. Anyway, ...
3
votes
2answers
235 views
How to programmatically access Orchard CMS content from outside?
To be specific, I'm going to use Orchard CMS as a back-end for content editors for an existing website.
My website is too complicated to wrap it into an Orchard custom Module, so I decided to use ...
3
votes
4answers
145 views
How can I access a MATLAB (interpolated) spline from another program?
If I was to create interpolated splines from a large amount of data (about 400 charts, 500,000 values each), how could I then access the coordinates of those splines from another software quickly and ...
3
votes
2answers
158 views
Fast SQL question about multiple month dates
SELECT DISTINCT MonthName(Month([Date])) AS [Month], tblSupportCalls.System, Count(tblSupportCalls.System) AS [Total for System], Year([Date]) AS [Year]
FROM tblSupportCalls
WHERE ...
3
votes
6answers
178 views
Are there existing data layers I can use for an application I'm building?
I'm writing a .NET application and the thought of implementing a data layer from scratch is icky to me. (By data layer I'm referring to the code that talks to the database, not the layer which ...
3
votes
1answer
72 views
A good(elegant) way to retrieve records with counts
Context: ASP.NET MVC 2.0, C#, SQL Server 2007, IIS7
I have 'scheduledMeetings' table in the database.
There is a one-to-many relationship: scheduledMeeting -> meetingRegistration
So that you could ...
3
votes
1answer
155 views
Silverlight data access
I'm working on a silverlight reporting tool which draws up all sorts of fancy graphs based on client data. The issue I'm having right now is a good way to get all the data I need from the database to ...
3
votes
3answers
793 views
Data access, unit testing, dependency injection
I've recently got a task to create a simple utility that allows to import data from a file with special format to the database. I've implemented console application with few classes(Program class ...
3
votes
5answers
335 views
Automatic Data Access Layer
I'm fundamentally sick of writing data access layers. I see it as a boring and pointless endeavour. I envisage a development environment where I can just create my Entities/Models and start building ...
3
votes
4answers
216 views
Data mapping code or reflection code?
Getting data from a database table to an object in code has always seemed like mundane code. There are two ways I have found to do it: 1) have a code generator that reads a database table and ...
3
votes
2answers
2k views
Code Review: ADO.NET Data Access Utility Class (VB)
When I started at my current employer I inherited a project from a previous developer and in that project was a data access utility class that tries to simplify a lot of the code involved in making ...
3
votes
4answers
235 views
Swapping out databases?
It seems like the goal of a lot of ORM tools and custom data access layers (DAO pattern, etc.) is to abstract the database to the point where you could supposedly swap out the entire database system ...
3
votes
3answers
1k views
How to limit user access at database level in Hibernate
The App
I need to implement a web app that will be used by different users. Each user has different privileges on various tables, e.g.
User A can see fields 'name' and 'address' from the table ...
3
votes
2answers
2k views
How to do simple Spring JDBC transactions outside the IoC container?
The project I'm working on uses straight JDBC data access in all its boilerplate glory and doesn't use any transactions. I feel like using transactions and simplifying the way data access methods are ...
3
votes
4answers
997 views
C++ Accessing the Heap
This problem involved me not knowing enough of C++. I am trying to access a specific value that I had placed in the Heap, but I'm unsure of how to access it. In my problem, I had placed a value in a ...
3
votes
3answers
714 views
Is this a bug with PHP array accessing?
I ran into this bug where an element of an array, if its index is the string "0", is inaccessible.
It's not a bug with unserialize, either, as this occurred in my code without invoking it.
$arr = ...
3
votes
4answers
383 views
Is it really such a bad idea to use webservices to wrap data-access layer?
I am not convinced - I think it might be useful to expose your data to different consumers that can build their front-end apps on top of your webservice.
Can someone provide samples of when using ...
3
votes
5answers
741 views
How in .Net do I Import Values from a CSV in the format I want using OleDB?
I have a CSV file that has a column that contains strings that look like integers. That is they should be dealt with as strings, but since they are numbers they appear to be imported as integers ...
3
votes
3answers
2k views
JAVA Swing client, Data Access to Remote Database; Ibatis
I've got a Java client that needs to access a remote database. It is the goal to hide database credentials from the user and not hardcode any credentials within the code. Therefore, the database ...
3
votes
9answers
2k views
Java: Advice on handling large data volumes. (Part Deux)
Alright. So I have a very large amount of binary data (let's say, 10GB) distributed over a bunch of files (let's say, 5000) of varying lengths.
I am writing a Java application to process this data, ...
2
votes
2answers
89 views
Accessing the same SQL Server database from 2 client applications can't achieved
I've developed a C# Linq to SQL accounting program. It has an SQL Server 2008 Express Edition. The program worked fine for one client, but when I tried to create a second client on another computer, ...
2
votes
1answer
150 views
What is the Best Way to Perform Geo Spatial Searches with Entity Framework Code First CTP 5?
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 another route.
...
2
votes
2answers
62 views
What is the most effecient way to pull thousands of records with hundreds of thousands of child records into class objects?
I have a scenario where I need to pull approximately 7500 database records where each records has 6 child entity lists. Each of those child lists could be 0 to approximately 125 records.
My class ...
2
votes
4answers
126 views
Need help locking my code for SQL Server
We want to build into our software the capability to build SQL queries freehand (currently cannot do so with our software), but need to be able to lock it down so that users cannot make any changes, ...
2
votes
1answer
209 views
DAL/BLL and Client/Server: Should the client use BLL or DAL objects for presentation? Or maybe another layer (data transfer object?)
I'm writing a client/server system. The server has a DAL/BLL design. The client is responsible for presenting the data objects and providing dialogs and wizard to allow the user to update these ...
2
votes
3answers
2k views
Best way to get a single value from a DataTable?
I have a number of static classes that contain tables like this:
using System;
using System.Data;
using System.Globalization;
public static class TableFoo
{
private static readonly DataTable ...
2
votes
2answers
2k views
Visual Studio 2010 ADO.NET Data Model vs Linq to SQL
What's the difference between the two? They seem to have the same functionality at first glance.
Which one has faster performance which one is easier to use?
2
votes
1answer
788 views
Fluent Nhibernate, Composite Keys and could not resolve property: error message
I've got a simple object with three properties. This links to a table with three columns, with two of the columns being primary keys (one int the other a datetime).
Whenever I try and query ...