3
votes
4answers
85 views
How to protect a database?
There is a website with a server database. I'm building a desktop application which uses data from one of the tables. Hacker can just take password from assembly.
How can I protec …
0
votes
4answers
37 views
Booking system dates in database
I need some help with the following:
I am setting up a booking system (kind of hotel booking) and I have inserted a check in date and a check out date into database, how do I go t …
0
votes
2answers
104 views
Database Design question
Hello everyone!
I have a Firebird database, which let's say has Tables A and B which look like this:
TableA
TableB's Id | SomeNumber | OtherNumber | ComputedByField …
2
votes
2answers
41 views
What OR-mappers allow one-to-many AND One-to-one relationship between the same tables?
Hi,
I'm currently looking for an OR-mapper to use for a side project I'm about to start. Since we're using an inhouse developed OR-mapper at work I don't really know much about ho …
1
vote
5answers
46 views
Django: Ordering objects by their children’s attributes
Consider the models:
class Author(models.Model):
name = models.CharField(max_length=200, unique=True)
class Book(models.Model):
pub_date = models.DateTimeField()
author = mode …
0
votes
4answers
36 views
what the difrent between primary..unique..foreign key, index
hi
What is the difference between primary, unique and foreign key constraints, and indexes?
I work on Oracle 10g and Sql Server 2008
thanks in advance
1
vote
4answers
40 views
Exclude Statement in SQL
Hello StackOverflow Community,
I had a quick question on how to exclude data from an SQL database using an SQL statement. My situation is I have a user login to their profile page …
1
vote
3answers
38 views
does ordering by lot of columns hit the performance badly?
I just ran into a SQL query with about 5 different columns in the ORDER statement, is it a good practice and how does it play with performance?
0
votes
4answers
60 views
Reliable and efficient key--value database for Linux?
I need a fast, reliable and memory-efficient key--value database for Linux. My keys are about 128 bytes, and the maximum value size can be 128K or 256K. The database subsystem shou …
11
votes
12answers
340 views
Should I be obfuscating database IDs from my users?
I'm being told that I shouldn't be using database IDs directly in HTML code in web applications.
Currently I use the IDs on things like table row IDs (tableRow-454 where 454 is th …
5
votes
5answers
89 views
What is an exciting area of database research? [closed]
I'm in graduate school and about to start a project related to databases. The professor has provided a list of topics for us to choose from, but we are also free to suggest somethi …
0
votes
4answers
28 views
Which is the best way to check if timestamp/datetime belongs to a specified date
Sometimes I have a datetime or timestamp columns in the database and, for example, I need to select all records with timestamp updated today.
I usually do it like this:
SELECT …
0
votes
1answer
29 views
Do database cursors pick up changes to the underlying data?
Quick question about cursors (in particular Oracle cursors).
Let's say I have a table called "my_table" which has two columns, an ID and a name. There are millions of rows, but …
0
votes
4answers
39 views
Database design question (conditional mandatory fields)
Hi,
Just looking for some opinions/ideas on how best to do this.
I'm building an extranet system where users are added by the administrators manually (there's no ability for someo …
0
votes
3answers
35 views
reducing mysql statements that differ only in ORDER BY field name
I'm trying to sort data by different fields ascending and descending. But I have different mysql pdo statements for the 4 fields I have (8 queries total):
$stmt1 = $po->prepare …
