Search found 102 matches: cserver

Return to advanced search

Re: Enviar mails usando cuenta de Office 365

... ) WITH OBJECT oEmailCfg:Fields :Item( "http://schemas.microsoft.com/cdo/configuration/smtpserver" ):Value := alltrim(cServer) :Item( "http://schemas.microsoft.com/cdo/configuration/smtpserverport" ):Value := nPuerto // Donde 465 es paga GMAIL y 25 es (por ...
by Enrrique Vertiz
Wed Jun 21, 2017 9:04 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Enviar mails usando cuenta de Office 365
Replies: 12
Views: 3365

oCn:insert - Not inserting data (SOLVED)

... { oBrw:naam, oBrw:voornaam, oBrw:p2017, cPloeg, date() } ) I believe this should work. The oCn is open and working : FWCONNECT oCn HOST cServer USER cUser PASSWORD cPassword DATABASE cDatabase I see no error when this code is executed. What should I change? function setploeg(oBrw,cPloeg)  ...
by Marc Venken
Sat Jun 03, 2017 9:58 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: oCn:insert - Not inserting data (SOLVED)
Replies: 4
Views: 851

Re: FWH 16.08 : Built-in MySql/MariaDB functionality (Updated )

Hello Rao ,

I have the same message with

oCn := maria_Connect( cServer, nil, cUser, cPassword, .F. )

I use FW January 2017 :cry:

Maurizio
by Maurizio
Mon Mar 27, 2017 10:05 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: FWH 16.08 : Built-in MySql/MariaDB functionality (Updated )
Replies: 76
Views: 28498

Re: FWH 16.08 : Built-in MySql/MariaDB functionality (Updated )

Instead of

FWCONNECT oCn HOST cServer USER cUser PASSWORD cPassword


Please try
oCn := maria_Connect( cServer, nil, cUser, cPassword, .F. )

This would suppress display of error messages while connecting
by nageswaragunupudi
Sat Mar 25, 2017 12:02 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: FWH 16.08 : Built-in MySql/MariaDB functionality (Updated )
Replies: 76
Views: 28498

Re: FWH 16.08 : Built-in MySql/MariaDB functionality (Updated )

Thanks Rao ,

but in this case the error is when I connect , lLogErr it should be in

FWCONNECT oCn HOST cServer USER cUser PASSWORD cPassword

Maurizio
by Maurizio
Fri Mar 24, 2017 5:00 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: FWH 16.08 : Built-in MySql/MariaDB functionality (Updated )
Replies: 76
Views: 28498

Re: FWH 16.08 : Built-in MySql/MariaDB functionality (Updated )

Thanks Rao , I have a loop that every 60 minutes connecting to a server FWCONNECT oCn HOST cServer USER cUser PASSWORD cPassword I read the new data and i close . oCn:Close() Sometimes I get this error : 2013 Lost connection to MySQL server at 'waiting for initial comunication ...
by Maurizio
Fri Mar 24, 2017 3:40 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: FWH 16.08 : Built-in MySql/MariaDB functionality (Updated )
Replies: 76
Views: 28498

Re: Ejemplo de Tdatarow para crear Base de datos y tablas

... server, built-in adiminstrator account's name is SA, like "root" for MySql. Syntax: oCn := FW_OpenAdoConnection( { "MSSQL", cServer, [cDataBase], cUser, cPassword }, lShowError ) OR oCn := FW_OpenAdoConnection( { "MSSQL,cServer,[cDataBase],cUser,cPassword", lShowError ...
by nageswaragunupudi
Tue Mar 21, 2017 4:29 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Ejemplo de Tdatarow para crear Base de datos y tablas
Replies: 19
Views: 3252

Re: FWH 16.08 : Built-in MySql/MariaDB functionality (Updated )

... oCn:customer  XBROWSER oRs  XBROWSER oCn:states FASTEDIT  4) New METHOD HideServer() Normally we can find the names of the server and user by oCn:cServer and oCn:cUser. Password can never be accessed. Now, if oCn:HideServer() is executed, even the server-name and user-name can not be accessed ...
by nageswaragunupudi
Sun Dec 11, 2016 10:38 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: FWH 16.08 : Built-in MySql/MariaDB functionality (Updated )
Replies: 76
Views: 28498

FWH 16.08 : Built-in MySql/MariaDB functionality (Updated )

... we can derive FW connection from that connection. oCn := maria_Connect( oAdoCn (or) oTMySqlCon ) DATAs ReadOnly cClientInfo, cServerInfo cServer, cuser, nPort, nFlags, cDB nError // Last error ( 0 = no error) cError // Last error in the selected language cSqlInfo // Last sql ...
by nageswaragunupudi
Fri Jul 01, 2016 9:32 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: FWH 16.08 : Built-in MySql/MariaDB functionality (Updated )
Replies: 76
Views: 28498

Re: A tool to send email ?

The parameter cServer is the smtp server used to send the email.

EMG
by Enrico Maria Giordano
Mon Jun 13, 2016 8:43 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: A tool to send email ?
Replies: 25
Views: 9678

Re: A tool to send email ?

Enrico,

puedes mostrar un ejemplo de uso de sendmail() con el parametro cServer ?

Google translator :

you can show an example of using sendmail () with the parameter cServer?
by albeiroval
Mon Jun 13, 2016 7:13 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: A tool to send email ?
Replies: 25
Views: 9678

Re: A tool to send email ?

Enrico,

Please you can set an example for sendmail (...), for the case of using cServer ?
by albeiroval
Mon Jun 13, 2016 2:46 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: A tool to send email ?
Replies: 25
Views: 9678

Re: A tool to send email ?

... for emails ending with aol.com // login for the SMTP-Server is needed. // username and password LOCAL cFrom := "Uwe" LOCAL cServer := "smtp.de.aol.com" LOCAL cTo := "esckoenig@aol.com" // my email for testing the mailbox for incomming emails LOCAL cSubjeCt ...
by ukoenig
Mon Jun 13, 2016 1:50 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: A tool to send email ?
Replies: 25
Views: 9678

Re: Function to download a defined file from a homepage ?

... oClient:Close() ELSE MYMEN("Error. No fue posible conectarse al servidor "+cNomSer) return ENDIF ENDIF FUNCTION DOWNLOAD() LOCAL cServer := "http:www.Pflegeplus.com" LOCAL cDirSer := "/Software/DOWNLOADS" oUrl := tURL():New( cServer + cDirSer + "/Pflegepl_4.zip" ...
by ukoenig
Fri Apr 22, 2016 9:52 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Function to download a defined file from a homepage ?
Replies: 31
Views: 15322

TipClient Windows 7 Lentidão Method Open (Solucionado)

Amigos,

em um cliente(windows7) esta ocorrendo demora de uns 12 segundos no METHOD open() do TIPCLIENTHTTP:

METHOD Open( cUrl ) CLASS TIPClient
...
//A demora esta aqui:
::inetConnect( ::oUrl:cServer, nPort, ::SocketCon )
...
RETURN .T.

Alguem sabe o que pode estar acontecendo?

att.
by MGA
Tue Apr 19, 2016 9:45 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: TipClient Windows 7 Lentidão Method Open (Solucionado)
Replies: 2
Views: 551
PreviousNext

Return to advanced search