in reply to Re^3: Perl DBI and Foreign Keys
in thread Perl DBI and Foreign Keys
You will see that the ScoreCard table winds up containing an extra field, "rowid" that I didn't specify in CREATE TABLE ScoreCard. Note: You need a program to show the actual created DB fields. That is a unique id that SQL will assign on it own. In the Participants TABLE, that field doesn't exist because I called it "id" and gave some rules for this PRIMARY KEY.#!/usr/bin/perl use strict; use warnings; use DBI; my $dbfile = "whatever.sqlite"; my $dbh = DBI->connect("dbi:SQLite:dbname=$dbfile","","",{RaiseError = +> 1}) or die "Couldn't connect to database: " . DBI->errstr; $dbh->do ("CREATE TABLE ScoreCard ( Url varchar(80) DEFAULT '', DateTime varchar(20) DEFAULT '1995-12-30 00:00:01', Desc varchar(100) DEFAULT '' ); "); $dbh->do ("CREATE TABLE Participants ( id integer PRIMARY KEY AUTOINCREMENT, Url varchar(80) , Name varchar(10) DEFAULT '' ); ");
I did take a look at your article and am still thinking about it. I did have to burst out laughing at this part:
"We don’t want our complexity to grow linearly as we add more functionality into the system, which would drastically slow us down as we grow in the eyes of both business and value confidence." My gosh we only wish that complexity grew linearly with functionality. Complexity appears to grow exponentially with functionality. What does "growing in the eyes of value confidence" mean? What!?
|
---|
Replies are listed 'Best First'. | |
---|---|
Re^5: Perl DBI and Foreign Keys
by soonix (Chancellor) on Apr 08, 2019 at 14:32 UTC | |
by dsheroh (Monsignor) on Apr 09, 2019 at 07:27 UTC |