Questions tagged [data-access]

Data access typically refers to software and activities related to storing, retrieving, or acting on data housed in a database or other repository.

Data Access is simply the authorization you have to access different data files. Data access can help distinguish the abilities of Administrators and users. E.g. Admins may be able to remove, edit and add data, while a general user may not be able as they don’t have the access to that particular file.

327 questions
-1
votes
1 answer

Generic data handling in Python

The situation While reading the Bible (as context) I'd like to point out certain dependencies e.g. of people and locations. Due to swift expandability I'm choosing Python to handle this versatile data. Currently I'm creating many feature vectors…
user3085931
  • 1,757
  • 4
  • 29
  • 55
-1
votes
1 answer

How to swap position for two lines in a file Java accessing directly to the lines

I need to swap the position of two lines in a file accessing directly to them. All the lines in my file have the same size in bytes, I know where every line is since they are all the same size, but I need to point to them directly without going…
-1
votes
2 answers

Custom Database Connection Object: Should i use a general one (singleton) or one per object instance?

What is the best practice: To create just one single static class (Singleton) that provide all needed connection to the database or create one object per DAO instance? Note that my project access more than one database simultaneously, so i created a…
Ewerton
  • 4,046
  • 4
  • 30
  • 56
-1
votes
2 answers

PHP: User Management, Data Access

i made a little web application in university and have some problems with data access. There are 3 user accounts which can log in and all of them can create their own lectures afterwards. Problem: Each teacher should only see the lectures he created…
-1
votes
1 answer

What is the simplest and fastest way of storing and querying simply-structured data?

What is the best way of storing and querying data for a simple tasks management application (e.g.)? The goal is to have maximum performance with minimum resources consumption (CPU, disk, RAM) for a single EC2 instance.
Igor Romanov
  • 1,689
  • 2
  • 19
  • 36
-1
votes
1 answer

VMWare machine - computer security and privacy?

I'm running a virtual machine on my computer (a Win XP machine in VMWare Player 5.0.1). My computer, and my network, contain very sensitive data I do not which to expose to the XP machine. Can I be confident that there is virtually no way for…
-1
votes
3 answers

Example of data access in java or a similar lang

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 used for the purpose?
The-Droidster
  • 635
  • 7
  • 13
-1
votes
1 answer

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 whether EF (or ORM in general) is good or bad, but I…
paul simmons
  • 5,568
  • 13
  • 51
  • 78
-1
votes
1 answer

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: $.get("fetchDatabase.php", function(data){ …
nalas
  • 85
  • 1
  • 12
-2
votes
4 answers

C# error Not all Code paths return a value, when doing just the quesry returns value just fine

I need to fill a datagrid With the information from the db, i have a dataAccess class and the normal form.cs file.When i do the query itself it returns value just fine but for some reason it doesen´t when run in code trough the sp. I´ve gotten this…
Tiago Silva
  • 254
  • 2
  • 13
-2
votes
1 answer

Connecting MySQL to Visual Studio C#

I'm trying to write data access code to connect MySQL to visual studio. I have this code so far, but I do not know if it's correct. I'm using my books and have commented out a few other things, but I received errors when I included the commented out…
ITNovice15
  • 29
  • 3
  • 9
-2
votes
1 answer

"Expected:=" compile error in vb6 while adding recordset to SQL Server 2005 database

Here I created recordset in vb6 and store values in that vb6. i want to write that recordset values to database table. while executing that code i am getting compile error like "Expected:=". please see the code below. Please let me know where I am…
pbrp
  • 273
  • 1
  • 10
  • 21
1 2 3
21
22