Search found 390 matches: host

Return to advanced search

perhaps error on tdatabase - resolved

... the only modification I made is to embed it in the window using a dialog like tfsdi (alanit) and using two tPanels one for the lmenu and one to host the Tplan class. I did a lot of tests this week without having had any kind of problem this morning i wanted to try again and i got this error ...
by Silvio.Falconi
Mon Apr 05, 2021 10:37 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: perhaps error on tdatabase - resolved
Replies: 5
Views: 705

Re: Talk.to chat in ActiveX

Hello Christiano, I don't think you can add mod Harbour on to any hosted service. The only server offering hosted services is xBhosts.com https://www.modharbour.club/mh_videogallery/index.prg But don't you have the possibility to host a web server on your ...
by Otto
Wed Feb 03, 2021 7:24 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Talk.to chat in ActiveX
Replies: 19
Views: 1482

WebServices Request

... but getting errors that have to do with my request. It should look like this POST /Services.asmx/PMSVRExport? HTTP/1.1 Host: visitortaxtest.deskline.net Content-Type: application/x-www-form-urlencoded betriebnr=XXXXXX&companyCode=VTPMSTEST&communityNumber=12345&stringDateFrom=2020-01-01&stringDateTo=2020-01-20 ...
by Iris Gesser
Wed Jan 27, 2021 9:09 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: WebServices Request
Replies: 3
Views: 687

Detectar conexión fallida a Mysql ? SOLUCIONADO

En el foro de inglés Hola amigos. Hago esto...para conectarme. FWCONNECT oCon HOST chost USER cUser PASSWORD cPassword DB cdatabase If oCon == NIL MsgInfo("No hay conexxión a la bases de datos","Informe") QUIT Endif Primero muestra el error ...
by D.Fernandez
Sun Jan 17, 2021 7:30 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Detectar conexión fallida a Mysql ? SOLUCIONADO
Replies: 0
Views: 264

How to detect fail connection to MySql SOLUCIONADO

Hi friend. I need help to detect the fail connection to Mysql If I do... FWCONNECT oCon HOST chost USER cUser PASSWORD cPassword DB cdatabase If oCon== nil MsgInfo("No hay conexxión a la bases de datos","Informe") Endif First show an error from mysql-server ...
by D.Fernandez
Sun Jan 17, 2021 6:58 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to detect fail connection to MySql SOLUCIONADO
Replies: 7
Views: 680

Re: COMO DETECTAR TERMINALES CONECTADAS A UN SERVIDOR DE RED

... están conectadas a la base de datos Los datos que te devuelven son: Id: Numero de proceso User: Nombre de usuario de la base de datos del puesto Host: Ip del puesto db: Nombre de la base de datos que está usando Command: Comando que está utilizando Time: Tiempo que hace que está conectado State: ...
by cmsoft
Thu Jan 07, 2021 10:26 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: COMO DETECTAR TERMINALES CONECTADAS A UN SERVIDOR DE RED
Replies: 6
Views: 1094

MySql OrdScope SOLUCIONADO

... I have two xBrowse, the one with clients and the two with accounts. (one clients has more than 1 account) THE FIRST xBrowse FWCONNECT oConsql HOST chost USER cUser PASSWORD cPassword DB cDatabase oRs := oConSql:RowSet( "select * from clientes" ) oRs:SetOrder(1) REDEFINE XBROWSE oClient ...
by D.Fernandez
Sun Dec 27, 2020 5:15 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: MySql OrdScope SOLUCIONADO
Replies: 3
Views: 594

MySql OrdScope SOLUCIONADO

... contiene el número por el que quiero filtar. Hola, tengo 2 xBrowse, el campo cliente contienen lo mismo en los dos. 1) FWCONNECT oConsql HOST chost USER cUser PASSWORD cPassword DB cDatabase oRs := oConSql:RowSet( "select * from clientes" ) oRs:SetOrder(1) REDEFINE XBROWSE oBr1 ...
by D.Fernandez
Sun Dec 27, 2020 4:01 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: MySql OrdScope SOLUCIONADO
Replies: 4
Views: 800

mysql_embedded: Unknown error 1146

... Called from MARIA_CONNECT(126) in .\source\internal\FWMARIA.PRG Called from MAIN(34) in mysqlmbd.prg line 34 is : FWCONNECT oCn HOST cDataFolder LANGFOLDER cLangFolder DATABASE "Fwh" My version of FWH : FWH 20.08 VersionNo 20081 BCC 7 : Embarcadero C++ 7.00 for Win32 ...
by mauri.menabue
Sat Dec 12, 2020 8:59 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: mysql_embedded: Unknown error 1146
Replies: 1
Views: 430

Re: Select...SQL SOLUCIONADO

Gracias Marc.

Asi quedó.
FWCONNECT oCon HOST 'localhost' USER 'root' PASSWORD '' DB dbases

oRs := oCon:RowSet( "select * from usuario where `idusu` = &1", { cUsuario } )
? oRs:FieldGet(4)

Saludos.
by D.Fernandez
Sun Nov 29, 2020 4:31 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Select...SQL SOLUCIONADO
Replies: 3
Views: 445

Re: in php I do this way, but how in fwSOLUCIONADO

Excelente Marc. Tomado de tus ejemplos, lo soluciné. Gracias. Así quedó. FWCONNECT oCon HOST 'localhost' USER 'root' PASSWORD '' DB dbases oRs := oCon:RowSet( "select * from usuario where `idusu` = &1", { cUsuario } ) ? oRs:FieldGet(4) >>>>Este ...
by D.Fernandez
Sun Nov 29, 2020 4:29 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: in php I do this way, but how in fw SOLUCIONADO
Replies: 5
Views: 823

Re: in php I do this way, but how in fw

Antonio, I can't do a SELECT whith the clausula WHERE. I don't see any axample. Example: Insert FWCONNECT oCon HOST 'localhost' USER 'root' PASSWORD '' DB dbases csql := oCon:InsertSQL( ctabla ,"nomlargo,idusu,pasar, claveliq",; { 'hola' , 'holla2', '30745298', '123456789' ...
by D.Fernandez
Sun Nov 29, 2020 1:41 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: in php I do this way, but how in fw SOLUCIONADO
Replies: 5
Views: 823

Re: a ver con esta aRow := oCon:QueryResult( "SELECT " + cList +

Amigos como hago un select con la clausula where? cPass:= 3074 FWCONNECT oCon HOST chost USER cUser PASSWORD cPass DB dbases cList := "NOMLARGO,IDUSU,PASAR,CLAVELIQ" aRow := oCon:QueryResult( "SELECT " + cList + " FROM USUARIO WHERE IDUSU ...
by artu01
Sat Nov 28, 2020 6:04 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: a ver con esta aRow := oCon:QueryResult( "SELECT " + cList +
Replies: 3
Views: 316

a ver con esta aRow := oCon:QueryResult( "SELECT " + cList +

Amigos como hago un select con la clausula where? cPass:= 3074 FWCONNECT oCon HOST chost USER cUser PASSWORD cPass DB dbases cList := "NOMLARGO,IDUSU,PASAR,CLAVELIQ" aRow := oCon:QueryResult( "SELECT " + cList + " FROM USUARIO WHERE IDUSU ...
by D.Fernandez
Sat Nov 28, 2020 5:50 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: a ver con esta aRow := oCon:QueryResult( "SELECT " + cList +
Replies: 3
Views: 316

Select... SOLUCIONADO

... 'cpass31' ") oconsulta:Execute(csql) MsgInfo(oCon[corto]) MsgInfo(oCon[pasar]) Gracias Dario Ferandez Asi quedó. Gracias Marc. FWCONNECT oCon HOST 'localhost' USER 'root' PASSWORD '' DB dbases oRs := oCon:RowSet( "select * from usuario where `idusu` = &1", { cUsuario } ) ? oRs:FieldGet(4) ...
by D.Fernandez
Sat Nov 28, 2020 6:07 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Select... SOLUCIONADO
Replies: 0
Views: 200
PreviousNext

Return to advanced search