Arne wrote:
> How do I start up to make some relational database prototypes
> using Mysql ?
Log into mysql, and start entering SQL commands.
> Could the answer be so simple that Mysql doesen't have any
> automated prosedures for keeping track of relation models an
> entities at all, so you will have to organize it all like flat
> files and then keep track of all relational integrety manually
> by yourself and via the client and it's sql strings ?
If you design your schema properly, then relational integrity is perforce maintained. That's the process called "normalization".
MySQL doesn't currently support "transaction", which might be what is bothering you.
See
http://www.mysql.com for all MySQL specific documentation.
Charlie