This tag is for general database questions; if you question is specific to SQL use that tag instead.
0
votes
0answers
14 views
Persisting NLP parsed data
I've recently started experimenting with NLP using Stanford's CoreNLP, and I'm wondering what are some of the standard ways to store NLP parsed data for something like a text mining application?
One ...
2
votes
1answer
30 views
How should I architect my Model and Data Access layer objects in my website?
I've been tasked with designing Data layer for a website at work, and I am very interested in architecture of code for the best flexibility, maintainability and readability.
I am generally acutely ...
4
votes
4answers
85 views
Designing a Database Application with OOP
I often develop SQL database applications using Linq, and my methodology is to build model classes to represent each table, and each table that needs inserting or updating gets a Save() method (which ...
-5
votes
0answers
23 views
Regardig Vb.net [closed]
hi everyone i am making a project for school management and manage all the record of student so I'm using VB.net 2008 and sql server 2008. i have a problem when i enter student date of birth in text ...
0
votes
4answers
74 views
PHP - Data Access Layer
I am currently reviewing a code base and noticed that a majority of the calls (along with DB connections) are just buried inside the PHP scripts. I would have assumed that like other languages they ...
0
votes
2answers
118 views
starting project with growth in mind. [closed]
I have an idea for a web application and have some good people keen to get involved. I will be doing most of the code at the start and have a few years experience with some quite large projects. I ...
3
votes
2answers
135 views
Taking a Projects Development to the Next Level
I have been looking for some advice for a while on how to handle a project I am working on, but to no avail. I am pretty much on my fourth iteration of improving an "application" I am working on; the ...
4
votes
4answers
96 views
System that splits passwords across two servers
I stumbled upon this news article on BBC,
RSA splits passwords in two to foil hackers' attacks
tl;dr - a (randomized) password is split in half and is stored across two separate servers, to foil ...
1
vote
1answer
111 views
Sharing a database while we work on local copies?
A friend and me are working on a webapp. We're using git so each of us has a local copy of the app. But the problem is the database. We want to be able to see the latest changes the other person made. ...
4
votes
2answers
93 views
How do I develop database-utilizing application in an agile/test-driven-development way?
I want to add databases (traditional client/server RDBMS's like Mysql/Postgresql as opposed to NoSQL, or embedded databases) to my toolbox as a developer. I've been using SQLite for simpler projects ...
4
votes
6answers
224 views
Should I have a separate method for Update(), Insert(), etc., or have a generic Query() that would be able to handle all of these? [closed]
I'm currently trying to write a class library for a connection to a database. Looking over it, there are several different types of queries: Select From, Update, Insert, etc.
My question is, what ...
5
votes
2answers
73 views
Database Change Auditing - Part of or Abstracted from ORM / Application Layer?
My fellow developers and I are at a crossroads in how to go about continuing our auditing of database changes.
Most of our applications log changes via INSERT, UPDATE, and DELETE triggers.
A few of ...
2
votes
1answer
116 views
Document-oriented vs Column-oriented database fit
I have a data-intensive application that desperately needs a database make-over.
The general data model:
There are records with RIDs, grouped together by group IDs (GID). The records have arbitrary ...
1
vote
0answers
54 views
How to distribute a unique database already in production?
Let's assume a successful web spring application running on a MySql or PostGre kind of database. The traffic is becoming so high and the amount of data is becoming so big that a distributed dataase ...
7
votes
4answers
339 views
Best C# database communication technique
A few days ago, I read an answer stating that writing queries within your c# code are long gone.
I'm not sure what the specific person meant with the comment but, it got me thinking. At the company ...