This somewhat looks familiar. Kind of like what's on page 364 of "Writing Apache Modules with Perl and C" - A DBI Database Logger. Must be the table.
create table access_log (
`when` datetime not null,
host varchar(255) not null,
method varchar(4) not null,
url varchar(255) not null,
auth varchar(50),
referer varchar(255),
status smallint(3) default 0,
bytes int(8)
);
Yields:
+---------+--------------+------+-----+---------------------+-------+
| Field | Type | Null | Key | Default | Extra |
+---------+--------------+------+-----+---------------------+-------+
| when | datetime | | | 0000-00-00 00:00:00 | |
| host | varchar(255) | | | | |
| method | varchar(4) | | | | |
| url | varchar(255) | | | | |
| auth | varchar(50) | YES | | NULL | |
| referer | varchar(255) | YES | | NULL | |
| status | smallint(3) | YES | | 0 | |
| bytes | int(8) | YES | | NULL | |
+---------+--------------+------+-----+---------------------+-------+
Note: since
when is a reserved word in MySQL you'll have to escape it with backticks. This isn't explained in the Eagle book.
This is a good tutorial. However, please give credit where its due if you used a book or another article as a reference to write it.
BMaximus
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
|
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.