Re: Date format problem [message #233 is a reply to message #229] |
Sun, 06 August 2006 11:27 |
haribole
Messages: 7 Registered: July 2006 Location: Cary
|
Junior Member |
|
|
Thanks Tony
Here is my srisri.dict.inc
I compared this to an existing working dict.inc, and looks identical.
Hari
<?php
// file created on August 4, 2006, 4:12 pm
// field specifications for table aol.srisri
$fieldspec['id'] = array('type' => 'integer',
'size' => 4,
'auto_increment' => 'y',
'minvalue' => -32768,
'maxvalue' => 32767,
'pkey' => 'y',
'required' => 'y');
$fieldspec['date'] = array('type' => 'date',
'size' => 12,
'required' => 'y');
$fieldspec['city'] = array('type' => 'string',
'size' => 50,
'required' => 'y');
$fieldspec['country'] = array('type' => 'string',
'size' => 50,
'required' => 'y');
$fieldspec['info'] = array('type' => 'string',
'size' => 50,
'required' => 'y',
'control' => 'multiline',
'cols' => 50,
'rows' => 5);
// primary key details
$this->primary_key = array();
// unique key details
$this->unique_keys = array();
// child relationship details
$this->child_relations = array();
// parent relationship details
$this->parent_relations = array();
// determines if database updates are recorded in an audit log
$this->audit_logging = TRUE;
// default sort sequence
$this->default_orderby = '';
// finished
?>
|
|
|