[Libreoffice-bugs] [Bug 119850] Database creation wizard dialog missing mysql connector options

2019-07-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=119850

Alex Thurgood  changed:

   What|Removed |Added

 Resolution|--- |FIXED
 Status|REOPENED|RESOLVED

--- Comment #29 from Alex Thurgood  ---
OK, the problem is that the new JDBC dialog prefixes jdbc: outside of the URL
entry box, whereas previously, this was included automatically in that box (but
unmodifiable).

As a result :

(1) the current help is incorrect as it suggests that the whole string to be
entered should contain both "jdbc:" and "mysql://" 

(2) people who configured their mysql jdbc connections the old way are in for a
surprise...

Perhaps we should close this again as RESOLVED and open a new report for the
string issue.

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 119850] Database creation wizard dialog missing mysql connector options

2019-07-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=119850

--- Comment #28 from Alex Thurgood  ---
I still can't connect to mysql server instances using the "JDBC" connection
option in the DB creation wizard (master 6.4 macOS)

No matter which strings I attempt to enter as the connection parameters, the
connection fails.

Note that I'm not talking about the MySQL option in the wizard 1st step, but
the JDBC option.

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 119850] Database creation wizard dialog missing mysql connector options

2019-03-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=119850

--- Comment #27 from Julien Nabet  ---
(In reply to Alex Thurgood from comment #26)
> ...
> "the problem doesn't happen with newly created ODB files on master that use
> the mysql JDBC connector via the wizard, but it does with ODB files created
> when you choose the JDBC option in the first step of the wizard. This also
> affects previously created JDBC connected filesmade with older versions of
> LO."

Yes there are 2 parts:
1) new odb with JDBC as first choice
=> I didn't test this indeed, I'll give it a try

2) old odb
=> I used the you had attached and had no problem (once I changed
server/user/password)

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 119850] Database creation wizard dialog missing mysql connector options

2019-03-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=119850

--- Comment #26 from Alex Thurgood  ---
Hi Julien,

Yes, possibly.

According to my findings in comment 21 :

"the problem doesn't happen with newly created ODB files on master that use the
mysql JDBC connector via the wizard, but it does with ODB files created when
you choose the JDBC option in the first step of the wizard. This also affects
previously created JDBC connected filesmade with older versions of LO."

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 119850] Database creation wizard dialog missing mysql connector options

2019-03-17 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=119850

Julien Nabet  changed:

   What|Removed |Added

 CC||serval2...@yahoo.fr

--- Comment #25 from Julien Nabet  ---
On pc Debian x86-64 with master sources updated today, with MariaDB 10.3.13, I
don't reproduce this.

Here what I did:
- followed comment 24 to create table named "AC" in a database call "test"
- retrieved https://bugs.documentfoundation.org/attachment.cgi?id=145178 file
- opened the file and changed database properties to replace xx.xx... by
localhost + replace user "Alex" by "julien" and filled password
- opened AC table
- add some data

Did I miss something?

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 119850] Database creation wizard dialog missing mysql connector options

2019-03-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=119850

Alex Thurgood  changed:

   What|Removed |Added

   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=12
   ||3999

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 119850] Database creation wizard dialog missing mysql connector options

2018-09-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=119850

--- Comment #24 from Alex Thurgood  ---
@Tamas :

You need to create a database called "test" on your mysql server, and then a
table "AC" as follows:


CREATE TABLE `AC` (
  `bid` int(10) NOT NULL AUTO_INCREMENT,
  `Ac` varchar(100) COLLATE utf8_unicode_ci DEFAULT NULL,
  `Cur` varchar(3) COLLATE utf8_unicode_ci NOT NULL,
  `dt` datetime DEFAULT NULL,
  PRIMARY KEY (`bid`),
  KEY `cur` (`Cur`)
) ENGINE=InnoDB AUTO_INCREMENT=10 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci

and then add some data to it

or else modify the content.xml of the ODB file to point to an already existing
db and table.

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 119850] Database creation wizard dialog missing mysql connector options

2018-09-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=119850

--- Comment #23 from Alex Thurgood  ---
Created attachment 145178
  --> https://bugs.documentfoundation.org/attachment.cgi?id=145178&action=edit
Test file - adjust as required for your own particular mysql connection

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 119850] Database creation wizard dialog missing mysql connector options

2018-09-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=119850

--- Comment #22 from Alex Thurgood  ---
For example, I see this in the content.xml of the corresponding ODB file:

com.mysql.jdbc.Driversimple


however, the Java class string isn't picked up or displayed in the dialog when
the file is re-opened and an attempt is made to read any of the tables,
queries, etc.

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 119850] Database creation wizard dialog missing mysql connector options

2018-09-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=119850

--- Comment #21 from Alex Thurgood  ---
@Tamas : the problem doesn't happen with newly created ODB files on master that
use the mysql JDBC connector via the wizard, but it does with ODB files created
when you choose the JDBC option in the first step of the wizard.

This also affects previously created JDBC connected filesmade with older
versions of LO.

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 119850] Database creation wizard dialog missing mysql connector options

2018-09-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=119850

--- Comment #20 from Alex Thurgood  ---
@Tamas :

I can attach an ODB file, but you would need to alter the connection
configuration to suit your own mysql connection, userID/pwd and test db.

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 119850] Database creation wizard dialog missing mysql connector options

2018-09-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=119850

--- Comment #19 from Alex Thurgood  ---
Created attachment 145175
  --> https://bugs.documentfoundation.org/attachment.cgi?id=145175&action=edit
Database Connection Properties Dialog

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 119850] Database creation wizard dialog missing mysql connector options

2018-09-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=119850

--- Comment #18 from Alex Thurgood  ---
(In reply to Tamas Bunth from comment #16)

Hi Tamas,

> Thank you for testing. Could you please explain in detail, how I can
> reproduce that? Could you also attach an ODB file of that kind?
> 
> What is a class string?

Lionel has explained that part. For the mysql jdbc connector this string is :

com.mysql.jdbc.Driver


For MariaDB, the class string is :

org.mariadb.jdbc.Driver

This string is supposed to be saved, and retrieved and displayed in the
enclosed screenshot dialog.

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 119850] Database creation wizard dialog missing mysql connector options

2018-09-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=119850

--- Comment #17 from Lionel Elie Mamane  ---
(In reply to Tamas Bunth from comment #16)

> What is a class string?

The name of a Java class. In this general context, this Java class is supposed
to expose the JDBC interfaces, and be a driver to a DBMS. In this particular
context, a driver to MySQL.

When one uses the wizard to create a new odb, and chooses "MySQL", the next
question is (was?) "what driver?", with a choice between ODBC, JDBC and native
(if installed...).

For ODBC you give a DSN source name. It better be a MySQL source, but that's
not technically checked/guaranteed. The connection, on the LibreOffice/SDBC
side is then an ODBC one, but some settings are automatically hardcoded to the
right ones for MySQL.

For JDBC you give a "class name" and parameters. The class name tells
LibreOffice which driver to load (what Java class). Again, it better be a MySQL
driver, but that's not technically checked/guaranteed. The connection, on the
LibreOffice/SDBC side is then a JDBC one, but some settings are automatically
hardcoded to the right ones for MySQL.

Native, I think you understand :) That's the one that you remade, excising out
the MySQL C++ connector.

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 119850] Database creation wizard dialog missing mysql connector options

2018-09-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=119850

--- Comment #16 from Tamas Bunth  ---
Hi Alex,

(In reply to Alex Thurgood from comment #13)
> @Tamas : it would appear that your changes have had a major side effect in
> which the existing jdbc driver class string is not only no longer read from
> existing ODB files (the advanced connection properties dialog shows an empty
> box), but additionally, any newly re-entered class string is ignored, even
> when the file is saved before closing...

Thank you for testing. Could you please explain in detail, how I can reproduce
that? Could you also attach an ODB file of that kind?

What is a class string?

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 119850] Database creation wizard dialog missing mysql connector options

2018-09-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=119850

--- Comment #15 from Alex Thurgood  ---
Tested against :

Version: 6.2.0.0.alpha0+
Build ID: 030181b37d2b7edd7cab20ceb7736e575186f99b
CPU threads: 4; OS: Mac OS X 10.13.6; UI render: default; 
Locale: fr-FR (fr_FR.UTF-8); Calc: threaded

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 119850] Database creation wizard dialog missing mysql connector options

2018-09-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=119850

--- Comment #14 from Alex Thurgood  ---
(In reply to Alex Thurgood from comment #13)
> @Tamas : it would appear that your changes have had a major side effect in
> which the existing jdbc driver class string is not only no longer read from
> existing ODB files (the advanced connection properties dialog shows an empty
> box), but additionally, any newly re-entered class string is ignored, even
> when the file is saved before closing...

The end result being that not only do existing ODB files display an error
message when attempting to load any of the tables, queries, reports, etc, but
additionally, the user is now forced to re-enter the jdbc class string each
time...

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 119850] Database creation wizard dialog missing mysql connector options

2018-09-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=119850

Alex Thurgood  changed:

   What|Removed |Added

 Resolution|FIXED   |---
 Status|RESOLVED|REOPENED

--- Comment #13 from Alex Thurgood  ---
@Tamas : it would appear that your changes have had a major side effect in
which the existing jdbc driver class string is not only no longer read from
existing ODB files (the advanced connection properties dialog shows an empty
box), but additionally, any newly re-entered class string is ignored, even when
the file is saved before closing...

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 119850] Database creation wizard dialog missing mysql connector options

2018-09-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=119850

Alex Thurgood  changed:

   What|Removed |Added

 OS|Linux (All) |All

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 119850] Database creation wizard dialog missing mysql connector options

2018-09-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=119850

Tamas Bunth  changed:

   What|Removed |Added

 Resolution|--- |FIXED
 Status|NEW |RESOLVED

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 119850] Database creation wizard dialog missing mysql connector options

2018-09-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=119850

--- Comment #12 from Commit Notification 
 ---
Tamas Bunth committed a patch related to this issue.
It has been pushed to "master":

http://cgit.freedesktop.org/libreoffice/core/commit/?id=37dba4f25f00ffc1a1a631772eadd50e998966c1

tdf#119850 show missing mysql connector options

It will be available in 6.2.0.

The patch should be included in the daily builds available at
http://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More
information about daily builds can be found at:
http://wiki.documentfoundation.org/Testing_Daily_Builds

Affected users are encouraged to test the fix and report feedback.

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 119850] Database creation wizard dialog missing mysql connector options

2018-09-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=119850

Commit Notification  changed:

   What|Removed |Added

 Whiteboard||target:6.2.0

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 119850] Database creation wizard dialog missing mysql connector options

2018-09-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=119850

Julien Nabet  changed:

   What|Removed |Added

 Blocks||119139


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=119139
[Bug 119139] Mysql timestamp fields not displayed in table data entry mode with
mysql jdbc-connector
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 119850] Database creation wizard dialog missing mysql connector options

2018-09-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=119850

Alex Thurgood  changed:

   What|Removed |Added

   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=11
   ||9139

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 119850] Database creation wizard dialog missing mysql connector options

2018-09-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=119850

Alex Thurgood  changed:

   What|Removed |Added

   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=11
   ||9786

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 119850] Database creation wizard dialog missing mysql connector options

2018-09-17 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=119850

--- Comment #11 from Julien Nabet  ---
(In reply to Xisco Faulí from comment #10)
> (In reply to Julien Nabet from comment #9)
>...
> The dialog is fine in the commit previous to that one. Then, for some commit
> the MySQL entry is gone and reintroduced in
> https://cgit.freedesktop.org/libreoffice/core/commit/
> ?id=a67acf8e6127e33dc9ba5f75e097aa27ad5fe952 where the problem is already
> reproducible...

Yep, I suppose Tamas removed the old drivers then implemented the last one but
without registering it first so no Mysql entry. Then the second quoted commit
registered the last driver he implemented and so Mysql entry reappeared (but in
its new form).
Of course, I may be wrong.

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 119850] Database creation wizard dialog missing mysql connector options

2018-09-17 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=119850

Xisco Faulí  changed:

   What|Removed |Added

 Blocks||119927


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=119927
[Bug 119927] [META] MariaDB C API
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 119850] Database creation wizard dialog missing mysql connector options

2018-09-17 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=119850

Xisco Faulí  changed:

   What|Removed |Added

   Keywords||bibisected
 CC||xiscofa...@libreoffice.org

--- Comment #10 from Xisco Faulí  ---
(In reply to Julien Nabet from comment #9)
> Regression from
> https://cgit.freedesktop.org/libreoffice/core/commit/
> ?id=26b40fcfc67480e75bd9959b0c5cb9db10fdf6a1 ?

The dialog is fine in the commit previous to that one. Then, for some commit
the MySQL entry is gone and reintroduced in
https://cgit.freedesktop.org/libreoffice/core/commit/?id=a67acf8e6127e33dc9ba5f75e097aa27ad5fe952
where the problem is already reproducible...

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 119850] Database creation wizard dialog missing mysql connector options

2018-09-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=119850

Julien Nabet  changed:

   What|Removed |Added

 Blocks||119786


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=119786
[Bug 119786] Database Properties changes Name of the MySQL database string when
a "/" is present
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 119850] Database creation wizard dialog missing mysql connector options

2018-09-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=119850

--- Comment #9 from Julien Nabet  ---
Regression from
https://cgit.freedesktop.org/libreoffice/core/commit/?id=26b40fcfc67480e75bd9959b0c5cb9db10fdf6a1
?

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 119850] Database creation wizard dialog missing mysql connector options

2018-09-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=119850

--- Comment #8 from Alex Thurgood  ---
(In reply to Julien Nabet from comment #5)
> On Win7 with LO 6.1.0.3, I got "Mysql" then ODBC or JDBC connection.
> 

Hi Julien,
Yes, these were the defaults when no additional native connector extension was
installed. If the native connector extension was also installed, you got a
radio button option for that too, so a total of 3 entries.

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 119850] Database creation wizard dialog missing mysql connector options

2018-09-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=119850

Lionel Elie Mamane  changed:

   What|Removed |Added

 Attachment #144844|Second dialog in db wizard  |Second dialog in db wizard
description||in LibO 6.2.alpha

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 119850] Database creation wizard dialog missing mysql connector options

2018-09-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=119850

Lionel Elie Mamane  changed:

   What|Removed |Added

 Attachment #144842|First dialog in db wizard   |First dialog in db wizard
description||in LibO 6.2 alpha

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 119850] Database creation wizard dialog missing mysql connector options

2018-09-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=119850

Lionel Elie Mamane  changed:

   What|Removed |Added

 Attachment #144846|third dialog in wizard in   |third dialog in wizard in
description|LibO <= 6.0 |LibO ≤ 6.1

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 119850] Database creation wizard dialog missing mysql connector options

2018-09-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=119850

--- Comment #7 from Lionel Elie Mamane  ---
Created attachment 144846
  --> https://bugs.documentfoundation.org/attachment.cgi?id=144846&action=edit
third dialog in wizard in LibO <= 6.0

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 119850] Database creation wizard dialog missing mysql connector options

2018-09-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=119850

--- Comment #6 from Lionel Elie Mamane  ---
The former third dialog of the wizard was also much nicer, holding the user's
hand to setup the connection. We should definitely be using that!

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 119850] Database creation wizard dialog missing mysql connector options

2018-09-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=119850

Julien Nabet  changed:

   What|Removed |Added

 Ever confirmed|0   |1
 CC||btom...@gmail.com,
   ||lio...@mamane.lu,
   ||serval2...@yahoo.fr
 Status|UNCONFIRMED |NEW

--- Comment #5 from Julien Nabet  ---
On Win7 with LO 6.1.0.3, I got "Mysql" then ODBC or JDBC connection.

Tamas: thought you might be interested in this one. Perhaps was it on purpose?

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 119850] Database creation wizard dialog missing mysql connector options

2018-09-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=119850

--- Comment #4 from Alex Thurgood  ---
(In reply to robert from comment #3)
> Hi Alex,
> 
> where did you get a working native connector for MySQL? I have tried the
> last from here:
> https://extensions.libreoffice.org/extensions/mysql-native-connector
> 


Hi Robert, it is now built-in by default in master, a lot of changes were
pushed recently to integrate it directly so that it became one of the bundled
extensions.

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 119850] Database creation wizard dialog missing mysql connector options

2018-09-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=119850

--- Comment #3 from rob...@familiegrosskopf.de ---
Hi Alex,

where did you get a working native connector for MySQL? I have tried the last
from here:
https://extensions.libreoffice.org/extensions/mysql-native-connector

Doesn't work on my system (OpenSUSE 15.0), so I can't test any bugs of this
connector ...

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 119850] Database creation wizard dialog missing mysql connector options

2018-09-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=119850

--- Comment #2 from Alex Thurgood  ---
Created attachment 144844
  --> https://bugs.documentfoundation.org/attachment.cgi?id=144844&action=edit
Second dialog in db wizard

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 119850] Database creation wizard dialog missing mysql connector options

2018-09-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=119850

--- Comment #1 from Alex Thurgood  ---
Created attachment 144842
  --> https://bugs.documentfoundation.org/attachment.cgi?id=144842&action=edit
First dialog in db wizard

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 119850] Database creation wizard dialog missing mysql connector options

2018-09-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=119850

Alex Thurgood  changed:

   What|Removed |Added

   Severity|normal  |major
   Keywords||regression
   Priority|medium  |high

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs