Search found 4 matches

by Konflict3
Tue Aug 23, 2016 9:05 pm
Forum: Databases
Topic: MySQL & SSL
Replies: 6
Views: 9144

Re: MySQL & SSL

ghettocottage wrote:If you have not aleady, you might try adding this line just before your revopendb line :

Code: Select all

   libUrlSetSSLVerification false
Hi ghettocottage,

unfortunately this does not have any effect - still getting "SSL connection error".

Thank you for the tip though!

K
by Konflict3
Tue Aug 23, 2016 4:40 pm
Forum: Databases
Topic: MySQL & SSL
Replies: 6
Views: 9144

MySQL & SSL

Hi,

I'm receiving "SSL connection error" with LC 8.0.2 IDE on OS X

Same error happens in IDE's of: 8.0.1, 7.1.3, 7.1.1

Identical script however works in 7.0.6

I can also connect to the server with same user / pass and host of course using Workbench.

Code used to open connection ...
by Konflict3
Tue Jan 12, 2016 12:38 pm
Forum: Android Deployment
Topic: LC 7.1.x SSL not working
Replies: 7
Views: 7149

Re: LC 7.1.x SSL not working

Hi,

Exactly same same - LC 7.0.6 working fine

LC 7.1.1 return "SSL connection error"

WIN7 / OSX 10.9
by Konflict3
Sat Apr 11, 2015 10:43 pm
Forum: Mac OS
Topic: Round Function Behaviour
Replies: 4
Views: 7755

Round Function Behaviour

Hi,

I just can't get my head around builtin "round" function.

As expected:
round(49,-2) yields 0
round(51,-2) yields 100

but
round(50,-2) yields 0

or
round(55,-1) yields 50

similarly
round(5,-1) yields 0

Function description explains:
The round function performs financial-style rounding. If ...