The data-access tag has no wiki summary.
0
votes
1answer
9 views
Spring & JSP: Accessing variables members through associations
I'm trying to display data in a JSP file and I got a question about how deep I can access my data's members (god this sounds wrong).
So I have an entity called Assignment which holds OneToOne ...
0
votes
2answers
62 views
Dynamically choose SQL Server or Oracle database
I have an application that allows my user to run queries against a database of their choice. The database can be either SQL server or Oracle. this method accepts two parameters from another class, ...
0
votes
2answers
40 views
Relational object mapping c#
What is the best way to map relational table which has more
than 150 columns. I don't want to use any 3rd party or entity framework. if
i am using data-reader it is very hard to write all the ...
0
votes
0answers
17 views
Speed up selective vector updates on a PPC architecture
I've got a simplistic update logic
for (iterations through vector)
{
if ( probability_of_updating_this_component > 50 )
{
update_it();
}
}
The problem is that this code is quite slow as ...
0
votes
3answers
44 views
ORM Mapping software replacement [closed]
We have a large web application that uses multiple databases (all currently MS SQL Server 2008 R2). This application is around 7 years old and was built around the EntitySpaces framework. It's ...
0
votes
1answer
52 views
Transaction script is Antipattern?
Well there is a similar topic about transaction script with NoSQL database, but this one is about the pattern in general. From what I find about Transaction script, it is not object-oriented at all. ...
2
votes
1answer
119 views
How to debug a WPF application with asynchronous data access and no Call Stack?
I have a large WPF application that uses the MVVM design pattern and asynchronous data access methods. It uses the old style asynchronous code with callback handlers and the IAsyncResult interface... ...
0
votes
2answers
73 views
How to use string indexing with IDataReader in F#?
I'm new to F# and trying to dive in first and do a more formal introduction later. I have the following code:
type Person =
{
Id: int
Name: string
}
let GetPeople() =
...
0
votes
2answers
349 views
Read blocks of a binary file buffer into different types
I am trying to read a binary file into memory, and then use it like so:
struct myStruct {
std::string mystring; // is 40 bytes long
uint myint1; // is 4 bytes long
};
typedef unsigned char ...
13
votes
7answers
628 views
Should I use public or private variables?
I am doing a large project for the first time. I have lots of classes and some of them have public variables, some have private variables with setter and getter methods and same have both types.
I ...
-1
votes
3answers
91 views
Example of data access in java or a similar lang [closed]
Can someone post or point out an example of
how flat-file data access is done in java? What java technology is used for the purpose?
how rdbms data access is done in java? What java technology is ...
0
votes
2answers
328 views
How to write file to Android device from outside of activity?
I have main activity where I'm creating a new object called fileSaver. I'm trying to sarialize object 'data' to file. FileSave has a method serialize() which creates file.
private String FILE_NAME = ...
0
votes
0answers
40 views
Entity Splitting With Non Shared Key Properties
K Denotes Key Field
Entity 1
K - SRVRECTYPE
K - CALLNBR
SRVSTAT
Entity 2
K - SRVSTAT
SRVDESCRIPTION
I want to create one Entity encompassing all of Entity 1 and SRVDESCRIPTION from ...
0
votes
3answers
250 views
spring mvc prevent direct access a method
I just started learning spring mvc 3. I found a small problem where my controller would handle a post request (registration form). but if type the mapping value (bla3/save.html) in address bar, it ...
0
votes
1answer
615 views
How to use SQL Command Builder and SQL Data Apdater
I read SQL Command Builder class from
http://msdn.microsoft.com/en-us/library/system.data.sqlclient.sqlcommandbuilder.aspx and I found that I can show update done on dataset/database using select and ...
0
votes
2answers
172 views
Using a transaction to Roll Back Changes with the Entity Framework
I have this specific DAO that inherits methods from a generic DAO
I would like to add a transaction to this code in order to roll back all changes that where made if an exception is found
...
1
vote
1answer
117 views
Spring.NET Equivalent for Java Spring Data Access Usage
What is the equivalent of "SimpleJdbcCall", "MapSqlParameterSource" and "BeanPropertySqlParameterSource" in Spring.NET? How can write the Java below in Spring.NET:
publicvoid create(T object) {
...
1
vote
0answers
18 views
Getting primary key Violation for two different VARCHAR values [duplicate]
Possible Duplicate:
SQL query that distinguishes between ß and ss
This is probably some weird encoding issue but I have no idea how to fix it.
I have a primary key column which is ...
0
votes
0answers
18 views
Measure Misaligned Data Accesses
Is there a way to measure misaligned data accesses for your program? I tried looking up PAPI docs and it looks like Intel i7 supports it as a native event, but not the previous generation of Intel ...
0
votes
0answers
47 views
Android: Unable to access methods in custom class Action<String, String>, why?
I made an class that extends HashMap including methods.
In my Adapter extends SimpleAdapter I have an ArrayList like so: ArrayList<Action> data;
When I try to access the values from this ...
0
votes
0answers
15 views
How to Access Data in Silverlight
I have written one Silverlight Application that did not required data access. I am now working on one that does. What is the best i.e. easiest way to do this? Our database is SQL Server.
I tried to ...
0
votes
0answers
85 views
How do you process datasets in silverlight
We currently have a Windows Application that has a Business Class and a data class. The business class often returns dataset to the Windows application. This data is gotten from the Data Class.
I ...
4
votes
1answer
244 views
Helping to Understand Web Services and REST
I've been longing to ask this question, but only found the time to do so now.
Anyways, there has been much of a discussion on Web Services (yeah, those traditional SOAP-XML response services) and ...
1
vote
1answer
201 views
Complex Search with Data Access Layer
I have entities like this. I made them simplier for this sample:
public class City
{
public int Id { get; set; }
public string Name { get; set; }
}
public class Street
{
public int Id { ...
2
votes
2answers
354 views
Java EE 5 and Hibernate
Which version of Hibernate can I use with Java EE 5? Can I use the latest version?
5
votes
1answer
74 views
Using of System.Security.Permissions.DataProtectionPermissionAttribute
Have you ever used this class in real world application? Can you imagine scenarios where it can be useful? I'm asking because in WCF there is MessageBodyMemberAttribute to control data ...
0
votes
0answers
178 views
Include in a compiled query
I'm trying to identify and improve some hotspots in a WCF-service. One of the queries uses an awful lot of Include statements. SQL server performance is sunshine and lollipops, but EF performance is ...
2
votes
1answer
1k views
where to handle spring DataAccessException
I develop an application using Struts, Spring, and Hibernate.
My DAOs uses spring jdbc and all its method throws DataAccessException(that is uncheked).
Where should I handle this exceptions? I know ...
0
votes
1answer
120 views
Accessing JSON parsed object (works with trace but not without…)
I'm facing a weird problem after parsing a JSON file. I access the data and can use it only if I use "trace" at the right place ! When I comment the trace line I get "undefined"... Is it a problem of ...
0
votes
1answer
620 views
Microsoft Enterprise Library 5.0 Data Access - is it possible to do “query by example” functionality?
I'm evaluating using the Data Access Application Block 5.0 at work since we are married to stored procedures for the foreseeable future. I like the simplicity and the Mapper that is included in this, ...
0
votes
2answers
158 views
data access control in entity framework
I want to make a simple(or not) data access control in Entity Framework. I saw that its not so easily supported in EF, because EF actually doesn't have good support of schemas and views.
I want to ...
-1
votes
1answer
140 views
ASP.NET MVC book/tutorial for a Non-EF/LINQ/ORM Developer
I have been using WebForms until now and now wish to learn MVC. However all the online sources that I can reach prefer employing Entity Framework for database examples. I do not will to discuss ...
-1
votes
1answer
140 views
Access JSON array values?
eSo I've got some parsed php data whiched I've fetched from my database and then parsed to JSON with json_encode(). Then I've used JSONparse() to make objects of my array. My code looks like this:
...
8
votes
3answers
2k views
PHP Lazy loading objects and dependency injection
I have recently started reading about dependency injection and it has made me rethink some of my designs.
The problem i have is something like this:
Let's say i have two classes: Car and Passenger;
...
0
votes
1answer
156 views
How to not repeat data access rules in .NET MVC3 using EF (Repository pattern)?
I have 2 classes with one-to-many like this:
public class Parent
{
public virtual List<Child> Children {get; set;}
}
I am also using repository classes for each model,
ie:
Parent has ...
0
votes
3answers
150 views
Microsoft Enterprise Library
What problems would I have had to come up against for me to turn to Microsoft Enterprise Library for its DAAB? In other words, I seem to be developing fine without it now - I'm using ADO .net entity ...
0
votes
1answer
573 views
Handle the DataContext in EntityFramework 4.0
Is there any "best practice" on how to handle the Datacontext in Entity Framework 4?
Currently, I'm doing something like this in every window:
public class MyWindow()
{
MyEntities() _entities;
...
0
votes
1answer
31 views
Specialize or generalize transfer objects and operations over large datasets?
I have a data intensive application where speed is vital and network traffic should be kept as low as possible.
The set of elements returned in the different queries are usually overlapping but not ...
1
vote
2answers
163 views
painless way to move the data access from desktop application to wcf service
I have an application that uses Entity Framework to access the data, and throughout the code have linq statements like this:
var idsOrfaos = context.Items.Cast<OrdemAberta>()
...
2
votes
1answer
4k views
The type Database cannot be constructed. You must configure the container to supply this value (EntLib 5 + ODP.NET)
I use ODP.NET and version 4.1 of the Enterprise Library, vs 2008. And all is OK.
Now, migrate using ODP.NET Oracle.DataAccess 4.112.2.0 and version 5.0.414.0 of the Enterprise Library, vs 2010, .net ...
4
votes
3answers
235 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 ...
3
votes
2answers
353 views
What's the point of ORM If I have to define every field in app.config for Oracle .net Entity Framework
To my knowledge, the whole point of Entity framework is to simplify and unify data access models.
I downloaded latest Oracle's .net tools (ODAC 11.2 Release 4) which claims EF4 support, and I'm ...
1
vote
2answers
422 views
PHP Fatal Error: Cannot use object of type DataAccess as array
I cannot figure out why I am getting the following error in PHP:
Fatal error: Cannot use object of type DataAccess as array in /filename on line 16.
Here is the relevant code for the file:
class ...
0
votes
1answer
376 views
Direct vs indirect database access
I'll take as example the following scenario. A company develops a component A deployed in its clients (this component is located in the client area, and this client may not be trusted by the company). ...
0
votes
1answer
165 views
Error when using UDL file
I got a problem when I using UDL file on a Windows XP pc. It shows error messeage "provider cannot be found. ensure that the provider has been installed properly".
I've search some article online, ...
0
votes
1answer
77 views
ASP.net: Search 2 million (max) string returning relating data
What is the best way to search a list of possibly 2 million strings, using AND / OR logic for keywords. Each string can have up to 2 relating pieces of data. It would be a basic database of:
name, ...
1
vote
1answer
2k views
Spring mvc:resources access to outside folder
I have stored medias (pictures and movies) in a folder (for example C:\test\tes.png) and I'm trying to access to pictures with an url like : http://localhost:8080/app/picture/test.png.
To do that, i ...
2
votes
2answers
433 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
216 views
How should I handle creation of composite entities with a hand-rolled DAL?
For reasons beyond my control I cannot use a real ORM, so I am forced to create a custom DAL that sits over the raw data and returns "domain objects" to the consumer. Also for reasons beyond my ...
0
votes
2answers
754 views
WCF Service is showing error after implemented in IIS
In my project I am using Enterprise Library to connect to database. It is working fine when I run the application from Visual Studio directly.
But this is showing error connecting to database when ...


