Return-Path: X-Original-To: apmail-manifoldcf-dev-archive@www.apache.org Delivered-To: apmail-manifoldcf-dev-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 22C6D110EA for ; Tue, 16 Sep 2014 14:31:35 +0000 (UTC) Received: (qmail 37673 invoked by uid 500); 16 Sep 2014 14:31:35 -0000 Delivered-To: apmail-manifoldcf-dev-archive@manifoldcf.apache.org Received: (qmail 37630 invoked by uid 500); 16 Sep 2014 14:31:35 -0000 Mailing-List: contact dev-help@manifoldcf.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@manifoldcf.apache.org Delivered-To: mailing list dev@manifoldcf.apache.org Received: (qmail 37475 invoked by uid 99); 16 Sep 2014 14:31:34 -0000 Received: from arcas.apache.org (HELO arcas.apache.org) (140.211.11.28) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 16 Sep 2014 14:31:34 +0000 Date: Tue, 16 Sep 2014 14:31:34 +0000 (UTC) From: "Karl Wright (JIRA)" To: dev@manifoldcf.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Commented] (CONNECTORS-1032) Can't crawl MySQL database tables MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 [ https://issues.apache.org/jira/browse/CONNECTORS-1032?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14135524#comment-14135524 ] Karl Wright commented on CONNECTORS-1032: ----------------------------------------- If that looks right, can you modify: connectors/jdbc/connector/src/main/java/jdbc/JDBCConnection.java, at about line 503, from this: {code} // We have 'colcount' cols to look thru for (int i = 0; i < resultCols.length; i++) { String key = resultCols[i]; {code} ... to this: {code} // We have 'colcount' cols to look thru System.out.println("Number of columns: "+resultCols.length); for (int i = 0; i < resultCols.length; i++) { String key = resultCols[i]; System.out.println("Key = "+key); {code} > Can't crawl MySQL database tables > --------------------------------- > > Key: CONNECTORS-1032 > URL: https://issues.apache.org/jira/browse/CONNECTORS-1032 > Project: ManifoldCF > Issue Type: Bug > Components: JDBC connector > Reporter: Karl Wright > Assignee: Karl Wright > Attachments: screenshot-1.png > > > Against some indeterminate version of MySQL, the seeding query: > {code} > SELECT command_id AS $(IDCOLUMN) FROM icinga_commands > {code} > ... produces the following: > Error: Bad seed query; doesn't return $(IDCOLUMN) column. Try using quotes around $(IDCOLUMN) variable, e.g. "$(IDCOLUMN)". > So does: > {code} > SELECT command_id AS "$(IDCOLUMN)" FROM icinga_commands > {code} > The first level of diagnosis will be to determine what column names are in fact being returned. IDynamicResultRow has the following method: > {code} > public Iterator getColumns(); > {code} > ... which we will need to use to get at the column names. -- This message was sent by Atlassian JIRA (v6.3.4#6332)