Hi All

I have been pushing my syslogs to the following mysql table

However whenever it sees lines with a ' (apostrophe) it complains about SQL syntax

Here are two lines with ' from my syslog:

Jan  1 03:58:15 dal-svcs-02.inet.qwest.net 203: *Jan  1 08:58:13.926
UTC: %PFINIT-SP-5-CONFIG_SYNC: Sync'ing the startup configuration to the standby Router

Jan 01 00:57:06 [65.119.67.5.17.126] %NTP-W-NOTIMEZONE, Time will not be
set until timezone is configured; use 'system set timezone' to configure

Here is how it complains: 

failed to run query: You have an error in your SQL syntax.  Check the
manual that corresponds to your MySQL server version for the right
syntax to use near 'ing the startup configuration to the standby Router
')' at line

failed to run query: You have an error in your SQL syntax.  Check the
manual that corresponds to your MySQL server version for the right
syntax to use near 'system set timezone' to configure
', '087) (RST)
')' at line 1

Here is how my mysql table looks like

+-----------+--------------+------+-----+---------+----------------+
| Field     | Type         | Null | Key | Default | Extra          |
+-----------+--------------+------+-----+---------+----------------+
| id        | int(11)      |      | PRI | NULL    | auto_increment |
| timestamp | varchar(16)  | YES  |     | NULL    |                |
| host      | varchar(255) | YES  |     | NULL    |                |
| prog      | varchar(255) | YES  |     | NULL    |                |
| mesg      | text         | YES  |     | NULL    |                |
+-----------+--------------+------+-----+---------+----------------+

Is there anyway I can modify the host,prog and mesg field types to
accept apostrophe as part of the record ?

Thanks for all the help

(Happy New Year !!)
-- 
Asif Iqbal
http://pgpkeys.mit.edu:11371/pks/lookup?op=get&search=0x8B686E08
There's no place like 127.0.0.1

-- 
MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To unsubscribe:    http://lists.mysql.com/[EMAIL PROTECTED]

Reply via email to