[ 
https://issues.apache.org/jira/browse/LOG4PHP-79?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12755241#action_12755241
 ] 

Christian Hammers commented on LOG4PHP-79:
------------------------------------------

For example log4j does not have a CREATE statement at all and expects the use 
to create the table. 
Therefore I would suggest to simply raise the varchar length to say 2000, which 
I confirmed to work at least on sqlite,  MySQL 5.1 MyISAM and InnoDB as well as 
PostgreSQL 8.4 and which is supposed to work on Oracle, too.
Additionally the documentation could suggest to create the table oneself or at 
least tune it because we don't add indices anyway.

> AppenderPDO: Some database fields seem a bit too short
> ------------------------------------------------------
>
>                 Key: LOG4PHP-79
>                 URL: https://issues.apache.org/jira/browse/LOG4PHP-79
>             Project: Log4php
>          Issue Type: Improvement
>          Components: Code
>            Reporter: Christian Hammers
>
> The default CREATAE TABLE statement in LoggerAppenderPDO is:
>                 $query = "CREATE TABLE {$this->table} (  timestamp 
> varchar(32)," .
>                                                                               
>           "logger varchar(32)," .
>                                                                               
>           "level varchar(32)," .
>                                                                               
>           "message varchar(64)," .
>                                                                               
>           "thread varchar(32)," .
>                                                                               
>           "file varchar(64)," .
>                                                                               
>           "line varchar(4) );";
> It seems to me that 64 chars for the filename and message are a bit short.
> Even our examples are so deeply nested that the .php from the file name got 
> cut off.
> I won't even think of a typical log message.
> I would propose to go for varchar(255) or even text ("clob") for message, 
> varchar(255) for file and "int unsigned" for line (currently it looks like 
> "9999 lines show be enough for everyone!" :) 

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.

Reply via email to