Re: use SSL inside Mysql connection

2018-01-24 Thread Heriberto Torrado via use-livecode
Hi Tom, No, I did not search in the forum. I will do that. Our project is with Mysql and we don't have the time to switch to another database (PostreSQL). We have a lot of data and queries running with Mysql. Thanks a lot. On 01/23/2018 10:26 PM, Tom Glod via use-livecode wrote: I've seen

Re: use SSL inside Mysql connection

2018-01-24 Thread Bob Sneidar via use-livecode
It doesn't. It's the community version that cannot bind OpenSSL. The Mac version that comes with OS X Server is not the community version and therefore supports OpenSSL. That is why I mentioned Windows. If he is running a MacOS X Server, SSL should just work. Bob S > On Jan 24, 2018, at 10:5

Re: use SSL inside Mysql connection

2018-01-24 Thread Richard Gaskin via use-livecode
Bob Sneidar wrote: > Which version of mySQL? The Windows community version does not support > OpenSSL because of licensing restrictions. It uses some other flavor > of SSL, which I was never able to get to work. Why would licensing affect only Windows but not other proprietary OSes? -- Richard

Re: use SSL inside Mysql connection

2018-01-24 Thread Devin Asay via use-livecode
Heribito, Your revOpenDatabase call is incorrectly formed. The useSSL and autoReconnect parameters should be booleans, like this: put revOpenDatabase(“mysql”, tServer, tDatabaseName, tUser, tPass,true,,,true) into tConnectionID Note also that you have to put the values into the correct paramet

Re: use SSL inside Mysql connection

2018-01-24 Thread Bob Sneidar via use-livecode
Which version of mySQL? The Windows community version does not support OpenSSL because of licensing restrictions. It uses some other flavor of SSL, which I was never able to get to work. Bob S > On Jan 23, 2018, at 18:01 , Heriberto Torrado via use-livecode > wrote: > > Hi, > > I'm going

Re: use SSL inside Mysql connection

2018-01-23 Thread Tom Glod via use-livecode
I've seen this addressed somewhere . have you searched the forum? my actual question is does it have to be mysql? On Tue, Jan 23, 2018 at 9:01 PM, Heriberto Torrado via use-livecode < use-livecode@lists.runrev.com> wrote: > Hi, > > I'm going crazy trying to make a SSL mysql connection fro