in reply to Writing NULL values to a MySQL record via DBI
What does the the met_office_raw_data table look like.
Using mysql client you can use the describe command like this.
mysql> describe test; +-------+---------+------+-----+---------+-------+ | Field | Type | Null | Key | Default | Extra | +-------+---------+------+-----+---------+-------+ | id | int(11) | NO | PRI | 0 | | +-------+---------+------+-----+---------+-------+ 1 row in set (0.00 sec)
The columns to look at are 'Null' (YES/NO) and the 'Default' values
poj
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Writing NULL values to a MySQL record via DBI
by ureco (Acolyte) on Feb 26, 2015 at 22:23 UTC | |
by GrandFather (Saint) on Feb 26, 2015 at 22:35 UTC |