0
votes
1answer
17 views
How do I Relate these 4 Tables
Trying to setup a simple Thread/Poll table mapping.
Here is what I have:
Threads table
ThreadID (Primary Key/Identity Column)
Polls table
PollID (Primary Key, FK for Thread …
0
votes
3answers
38 views
SQL design for survey with answers of different data types
I am working on an online survey. Most questions have a scale of 1-5 for an answer. If we need to add a question to the survey, I use a simple web form, which does an INSERT into t …
0
votes
2answers
30 views
MySQL: inserting records in tables linked by foreign key
In MySQL, is it possible to have two tables linked by a foreign key and when a record is inserted into the parent table to create a corresponding record in the child table?
I have …
1
vote
2answers
21 views
How to store word compositions in a relational database in a normalized way?
I'm trying to find a nice way to store word compositions of the following form:
exhaustcleaningsystem
exhaust cleaning system
exhaustcleaning system
exhaust cleaningsystem
The …
0
votes
3answers
44 views
mySQL - Insert into three tables
I recently asked this question.
I have a relational database with three tables. The first containts id's
that relate to the second. The second
contains id's that r …
0
votes
7answers
46 views
mysql - query three tables
I have a relational database with three tables. The first containts id's that relate to the second. The second contains id's that relate to the third. The third contains the result …
0
votes
1answer
30 views
SQL Server ‘object’/’property’ relational tables linking to other tables
Excuse the poor title, i can not think of the correct term.
I have a database structure that represents objects, objects have types and properties.
Only certain properties are av …
0
votes
1answer
62 views
Django relation doesnt work?
I have the following in models:
class Companies(models.Model):
ComName = models.CharField(max_length=255)
ComURL = models.CharField(max_length=1024,null=True)
class P …
1
vote
2answers
229 views
How to wire a middle tier of Objects to a data tier consisting of a DataSet?
Howdy,
I have a middle tier containing several related objects and a data tier that is using a DataSet with several DataTables and relationships.
I want to call a Save method on …
0
votes
2answers
707 views
Real world MySQL/Postgres database schema examples and analysis tools
Hello,
I am doing analysis on schema evolution and have really fallen short of real world database schemas that have evolved a bit and stored in version control. Mediawiki (http:/ …
1
vote
4answers
42 views
Best Practice for relationships shared among multiple tables
I keep running into this design problem, and I'm not happy with my solution so far. The problem is this:
I have two or more entities, like People and Dogs, and they both have a re …
0
votes
4answers
211 views
Is there a simple way to do GUI input for a relational database?
I'm building a student rostering application for a friend and I'm just about done except for the GUI. I'm writing it in wxpython but I'm not sure how to proceed with the input fie …
6
votes
7answers
550 views
What are the pros and cons of object databases?
There is a lot of information out there on object-relational mappers and how to best avoid impedance mismatch, all of which seem to be moot points if one were to use an object data …
0
votes
4answers
83 views
Database relation many to many
This is basicly my database structure
one product (let say soap) will have many retail selling size
1 liter
4 liters
20 liters
In my "produit" database I will have the soa …
0
votes
0answers
8 views
Modelling data loading techniques for a MVC web application
Hi all,
When you are developing an MVC based website that will, for instance, be able to display profile information about a user, how do you usually model data if it's coming fro …
