MonitorPresets SQL INSERT problem
Posted: Tue Sep 11, 2007 6:10 pm
Hi,
Before I go on let me just say that I followed the rules, did several searches on the subject here, checked the patches section of the Wiki and didn't find anything about this. So if I "missed the memo" somewhere here or on the Wiki on this, please forgive me.
It appears (at least on my Centos/MySQL installation), the INSERT statements for MonitorPresets contained in db/zm_update-1.21.4.sql and 1.22.0.sql don't work. What I get is this:
Here's my installation's info:
My command line for executing the script from the db/ subdir:
It looks like the problem my MySQL installation is having is with the 1st value in the MonitorPresets INSERT statement, which is supposed to be for the Auto-Increment Id field:
If I simply replace that empty single quotes '' with NULL, then everything works fine:
So I edited the resulting zm_create.sql file and replaced the single quotes with NULL in those INSERT statements and the entire script executes flawlessly. Oddly enough if I submit the same untouched INSERT stmt using my Windows SqlYog client (a MySQL GUI client utility) it works fine, but attempting to execute the same stmts from the Linux prompt doesn't work.
As I said before, I checked the Wiki's Patches section and saw a patch relating to MonitorPresets, but that patch is a fix for zm_html_view_monitor.php and not the table create/insert statements, so it appears unrelated to the problem I mention here. In any case, if someone could verify that this is a real problem it would be great. Or let me know if I really did miss some other patch?
Cheers,
Ramin

Before I go on let me just say that I followed the rules, did several searches on the subject here, checked the patches section of the Wiki and didn't find anything about this. So if I "missed the memo" somewhere here or on the Wiki on this, please forgive me.
It appears (at least on my Centos/MySQL installation), the INSERT statements for MonitorPresets contained in db/zm_update-1.21.4.sql and 1.22.0.sql don't work. What I get is this:
Code: Select all
ERROR 1062 (23000) at line 529: Duplicate entry '0' for key 1
Code: Select all
$ uname -a
Linux video01 2.6.9-34.ELsmp #1 SMP Wed Mar 8 00:27:03 CST 2006 i686 i686 i386 GNU/Linux
$ mysqladmin version
Server version 5.0.27-standard
Protocol version 10
ZoneMinder v1.22.3 built from sources (not an RPM or LiveCD install)
Code: Select all
$ mysql -u root -p < zm_create.sql
Code: Select all
INSERT INTO MonitorPresets VALUES ('', ...);
Code: Select all
INSERT INTO MonitorPresets VALUES (NULL, ...);
As I said before, I checked the Wiki's Patches section and saw a patch relating to MonitorPresets, but that patch is a fix for zm_html_view_monitor.php and not the table create/insert statements, so it appears unrelated to the problem I mention here. In any case, if someone could verify that this is a real problem it would be great. Or let me know if I really did miss some other patch?
Cheers,
Ramin
