Search found 102 matches: cserver

Return to advanced search

Re: Busqueda SQL

... datos ) oCone :=tOleAuto():new("ADODB.connection") oCone:Open( "DRIVER={MySQL ODBC 3.51 Driver};" + ; "server=" + cServer + ; ";database=" + cDatabase + ; ";uid=" + cUser + ; ";port=" + cPort + ; ";pwd=" + cPass ) xRfc:="XAXX010101XXX" ...
by servicomver
Fri Jul 13, 2018 8:37 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Busqueda SQL
Replies: 15
Views: 3084

Re: testpop3

Hi Enrico,

Please, post a example for fill string cServer and cUser
by shark
Thu May 24, 2018 3:27 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: testpop3
Replies: 20
Views: 4576

Re: How to receive an e-mail message with xharbou / fivewin

Thanks Enrico.

post an string example of cserver, cuser and cpass fill...

I do not know how to fill this variables.
by shark
Wed May 23, 2018 6:55 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to receive an e-mail message with xharbou / fivewin
Replies: 2
Views: 507

Re: testpop3

Hi enrico,

Your function works with gmail?

What string for cServer?

cUser := "acessosoft@gmail.com"
cPassword := "acess123"
cServer := "gmail.com"

It this?
by shark
Wed May 23, 2018 6:30 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: testpop3
Replies: 20
Views: 4576

Re: Error en SQL

Using FWH Ado functions simplifies the work. oCn := FW_OpenAdoConnection( { "MYSQL", cServer, cDatabase, cUser, cPassword }, .t. ) if oCn == nil ? "Fail" return nil else ? "Connected" endif oRs := FW_OpenRecordSet( oCn, "select * from ...
by nageswaragunupudi
Fri Jan 26, 2018 12:06 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Error en SQL
Replies: 3
Views: 1063

Error en SQL

... programas a SQL ya logré conectarme con esto: #include "FiveWin.Ch" #Include "Ado.ch" FUNCTION ConnServer() LOCAL oCone Local cServer := "localhost" //Ubicación del servidor Local cUser := "root" // usuario Local cPass := "" // password del usuario ...
by servicomver
Thu Jan 25, 2018 9:12 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Error en SQL
Replies: 3
Views: 1063

RESUELTO !!! ->Problemas para enviar Mail por CDO

... oCfg := CREATEOBJECT( "CDO.Configuration" ) oCfg:Item( "http://schemas.microsoft.com/cdo/configuration/smtpserver" ):Value := cServer ¿Qué me está ocurriendo? ¿Por que me da error al crear el objeto/usar el método? ¿Se necesita algo 'especial' para usar CDO? ¿Se debe 'activar' ...
by FiveWiDi
Thu Dec 28, 2017 12:00 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: RESUELTO !!! ->Problemas para enviar Mail por CDO
Replies: 6
Views: 1163

Re: testpop3

... = TIPClientPOP():New( "pop://" + STRTRAN( cUser, "@", "&at;" ) + ":" + cPassword + "@" + cServer )         msginfo("STE1")         IF EMPTY( oCli ); BREAK; ENDIF         msginfo("STEP2")         oCli:oUrl:cUserid = STRTRAN( ...
by damianodec
Fri Nov 10, 2017 1:13 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: testpop3
Replies: 20
Views: 4576

Re: funciones de FWH y Harbour en un archivo .txt

... NetErr(<lNewError>)->lError NetName()->cWorkstationName NetPrinter()->lIsNetworkPrinter NetRedir(<cLocal>,<cServer>,[<cPassword>],[<lShowError>])->lSuccess NetRmtName(<cLocal>)->cRemote Network()->lIsNetwork NextKey()->nInkeyCode ...
by carlos vargas
Sat Oct 21, 2017 8:44 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: funciones de FWH y Harbour en un archivo .txt
Replies: 7
Views: 5719

Re: Can I change ODBC Data Source Configon the fly? *Got it*

Maurizio wrote:I Use

oDSN := TDSN():Create( cODBC, "mastroODBC",cDbName ,cServer, cUser,1, 'C:\Program Files (x86)\MySQL\Connector ODBC 3.51\myodbc3.dll', val(nPort), cPassword )

Maurizio
http://www.nipeservice.com

Thank you so much, Maurizio. It's the one that I need. Where is TDSN Class?
by dutch
Mon Sep 04, 2017 9:39 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Can I change ODBC Data Source Configon the fly? *Got it*
Replies: 7
Views: 1321

Re: Can I change ODBC Data Source Configon the fly? *Got it*

I Use

oDSN := TDSN():Create( cODBC, "mastroODBC",cDbName ,cServer, cUser,1, 'C:\Program Files (x86)\MySQL\Connector ODBC 3.51\myodbc3.dll', val(nPort), cPassword )

Maurizio
www.nipeservice.com
by Maurizio
Mon Sep 04, 2017 7:03 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Can I change ODBC Data Source Configon the fly? *Got it*
Replies: 7
Views: 1321

Re: Pasar tablas SQL Server a DBF

... codigo #include "FiveWin.ch" //----------------------------------------------------------------// REQUEST DBFCDX function Main() local cServer := "localhost\SQLEXPRESS" local cDatabase := "SBODemoUS" local oCn, oRs, aTables, cTable oCn := FW_OpenAdoConnection( { ...
by Compuin
Fri Jul 14, 2017 2:42 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Pasar tablas SQL Server a DBF
Replies: 46
Views: 6790

Re: Pasar tablas SQL Server a DBF

... manera: #include "FiveWin.ch" //----------------------------------------------------------------// REQUEST DBFCDX function Main() local cServer := "localhost\SQLEXPRESS" local cUser := "SA" local cPassword := "1234" local cDatabase := "SBODemoUS" ...
by Compuin
Thu Jul 13, 2017 7:44 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Pasar tablas SQL Server a DBF
Replies: 46
Views: 6790

Re: Pasar tablas SQL Server a DBF

... asi #include "FiveWin.ch" //----------------------------------------------------------------// REQUEST DBFCDX function Main() local cServer := "localhost\SQLEXPRESS" local cUser := "SA" local cPassword := "1234" local cDatabase := "SBODemoUS" ...
by Compuin
Thu Jul 13, 2017 4:10 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Pasar tablas SQL Server a DBF
Replies: 46
Views: 6790

Re: Pasar tablas SQL Server a DBF

... Y este es mi codigo #include "FiveWin.ch" //----------------------------------------------------------------// function Main() local cServer := "localhost\SQLEXPRESS" local cUser := "SA" local cPassword := "1234" local cDatabase := "SBODemoUS" ...
by Compuin
Thu Jul 13, 2017 3:42 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Pasar tablas SQL Server a DBF
Replies: 46
Views: 6790
PreviousNext

Return to advanced search