Archive for November 14th, 2006

TLA Novosti i Zanimljivosti

Tagged: Marketing Date: 14th, November 2006

7.11.2006 – U javnosti je objavljeno da je TLA (Text Link Ads) prodat. Kupac je MediaWiz.
10.11.2006 – Na ponpezan način počeo je sa radom servis ReviewMe.com. ÄŒedo TLA.
U ovom tekstu neću se osvrtati na kupovinu TLA jer je ovakav potez manje ili više već neko vreme očekivan, već ću se osvrnuti na potpuno novi (bar [...]

  • Leave Comment
  • Read Comments (0)

2nd part Referential integrity with MySQL

Tagged: Database, MySQL Date: 14th, November 2006

In first part I talked about the basis of referential integrity, in this part I will go through few practical examples.
For start we will create on table that we will call ‘news’ and then insert few rows
CREATE TABLE news (id TINYINT NOT NULL AUTO_INCREMENT,
title VARCHAR(50), body VARCHAR(255) NOT NULL, PRIMARY KEY(id)) ENGINE=INNODB;
Query OK, 0 rows [...]

  • Leave Comment
  • Read Comments (1)