Re: [MSEide-MSEgui-talk] tmsemysqlconnection component

2013-02-20 Thread Patrick Goupell
On 02/19/2013 01:52 AM, Ivanko B wrote: of the tmsemysqlconnection component travel the network as clear text or encrypted data? == Isn't it the duty of the client DLL ? (establishing SSL connection etc) (an excellent solution - use STUNNEL4 as middleware, it

Re: [MSEide-MSEgui-talk] tmsemysqlconnection component

2013-02-20 Thread Martin Schreiber
On Wednesday 20 February 2013 15:57:56 Patrick Goupell wrote: On 02/19/2013 01:52 AM, Ivanko B wrote: of the tmsemysqlconnection component travel the network as clear text or encrypted data? == Isn't it the duty of the client DLL ? (establishing SSL connection

Re: [MSEide-MSEgui-talk] tmsemysqlconnection component

2013-02-20 Thread Patrick Goupell
On 02/20/2013 10:42 AM, Martin Schreiber wrote: This is the code: HMySQL1:=mysql_real_connect(HMySQL,PChar(H),PChar(U),Pchar(P),Nil,fport,Nil,0); mysql_real_connect() is docmented here: http://dev.mysql.com/doc/refman/5.0/en/mysql-real-connect.html We don't know how MySQL client

Re: [MSEide-MSEgui-talk] tmsemysqlconnection component

2013-02-20 Thread Patrick Goupell
On 02/20/2013 10:42 AM, Martin Schreiber wrote: This is the code: HMySQL1:=mysql_real_connect(HMySQL,PChar(H),PChar(U),Pchar(P),Nil,fport,Nil,0); mysql_real_connect() is docmented here: http://dev.mysql.com/doc/refman/5.0/en/mysql-real-connect.html We don't know how MySQL client library

Re: [MSEide-MSEgui-talk] tmsemysqlconnection component

2013-02-20 Thread Ivanko B
PerĀ  the documentation from the supplied link it seems the answer is encrypted. Probably the need in encryption is set by server settings, and clients just follow these. PSL: You can also make the things clear with a network sniffer -

[MSEide-MSEgui-talk] tmsemysqlconnection component

2013-02-18 Thread Patrick Goupell
Does the password property of the tmsemysqlconnection component travel the network as clear text or encrypted data? Patrick -- The Go Parallel Website, sponsored by Intel - in partnership with Geeknet, is your hub for

Re: [MSEide-MSEgui-talk] tmsemysqlconnection component

2013-02-18 Thread Ivanko B
of the tmsemysqlconnection component travel the network as clear text or encrypted data? == Isn't it the duty of the client DLL ? (establishing SSL connection etc) (an excellent solution - use STUNNEL4 as middleware, it works brilliant both in LINUX win-32)