From 47559a4a83958157fdb1a96518ef533ea34f0d71 Mon Sep 17 00:00:00 2001
From: Marc Delisle
Date: Tue, 4 Nov 2003 13:46:11 +0000
Subject: [PATCH] bug 833900, FAQ 3.10 added
---
ChangeLog | 4 ++++
Documentation.html | 11 +++++++++++
2 files changed, 15 insertions(+)
diff --git a/ChangeLog b/ChangeLog
index 79f1e5746..5f941c9a1 100755
--- a/ChangeLog
+++ b/ChangeLog
@@ -5,6 +5,10 @@ phpMyAdmin - Changelog
$Id$
$Source$
+2003-11-04 Marc Delisle
+ * Documentation.html: bug 833900, added known limitation in FAQ 3.10
+ about selecting homonyms on a table without primary key
+
2003-11-04 Garvin Hicking
* Documentation.html: Added known limitation about ANSI-mode
(Bug #816858)
diff --git a/Documentation.html b/Documentation.html
index fb28909de..8ed67814d 100755
--- a/Documentation.html
+++ b/Documentation.html
@@ -2791,6 +2791,17 @@ To create a new, empty mimetype please see libraries/transformations/template_ge
When MySQL is running in ANSI-compatibility mode, there are some major differences in how SQL is structured (see http://www.mysql.com/doc/en/ANSI_mode.html). Most important of all, the quote-character (") is interpreted as an identifier quote character and not as a string quote character, which makes many internal phpMyAdmin operations into invalid SQL statements. There is no workaround to this behaviour. News to this item will be posted in Bug report #816858
+
+ [3.10] Homonyms and no primary key: When the results of a SELECT display
+ more that one column with the same value
+ (for example SELECT lastname from employees where firstname like 'A%' and two "Smith" values are displayed),
+ if I click Edit I cannot be sure that I am editing the intended row.
+
+
+ Please make sure that your table has a primary key, so that phpMyAdmin
+ can use it for the Edit and Delete links.
+
+
[4. ISPs, multi-user installations ]