Search found 43 matches

by ip_ram
Sat Sep 19, 2020 10:41 pm
Forum: FiveWin for Harbour/xHarbour
Topic:
Replies: -1
Views:

Re: FW MS-SQL Server

Rick,

Tks
by ip_ram
Thu Sep 17, 2020 11:54 pm
Forum: FiveWin for Harbour/xHarbour
Topic:
Replies: -1
Views:

Re: FW MS-SQL Server

Tks
by ip_ram
Thu Sep 17, 2020 1:35 pm
Forum: FiveWin for Harbour/xHarbour
Topic:
Replies: -1
Views:

FW MS-SQL Server

Hello!

Does FW access MS-SQl Server as well as access MySQL?

Tks

Rodrigo Melo
Brazil
by ip_ram
Thu Jan 17, 2019 10:46 am
Forum: FiveWin for Harbour/xHarbour
Topic:
Replies: -1
Views:

Export xBrowse to Excel

Hello!

I need to export an xbrowse query to an Excel spreadsheet, but the user can edit it.
Any tips?

Thank you!

Rodrigo Melo
by ip_ram
Wed Sep 26, 2018 1:16 am
Forum: FiveWin for Harbour/xHarbour
Topic:
Replies: -1
Views:

Re: xBrowse multi selects (resolvido)

Rao,

Tks.
by ip_ram
Tue Sep 25, 2018 1:17 am
Forum: FiveWin for Harbour/xHarbour
Topic:
Replies: -1
Views:

Re: xBrowse multi selects (resolvido)

Navarro,

Resolvido assim:

Function GrupoListarPessoa()    Local oDlg, oBrw, oSay, oPar, oCon, oRet, lRet := .f.         If ! Conectar(.f.)        Return(Nil)    EndIf    oPar := oDba:RowSet("select ...
by ip_ram
Sat Sep 22, 2018 11:06 pm
Forum: FiveWin for Harbour/xHarbour
Topic:
Replies: -1
Views:

Re: xBrowse multi selects

Navarro,

Após selecionar os registros no browse (oBrw) como recuperar os registros selecionados em aPes?

Function GrupoListarPessoa() Local oDlg, oBrw, oSay, oPar, oCon, oRet, lRet := .f. If ! Conectar(.f.) Return(Nil) EndIf oPar := oDba:RowSet("select id,nom_pes from ...
by ip_ram
Tue Sep 18, 2018 4:36 pm
Forum: FiveWin for Harbour/xHarbour
Topic:
Replies: -1
Views:

Re: xBrowse multi selects

Navarro,

Gracias.
by ip_ram
Tue Sep 18, 2018 3:49 pm
Forum: FiveWin for Harbour/xHarbour
Topic:
Replies: -1
Views:

xBrowse multi selects (resolvido)

Olá!
Preciso selecionar várias linhas em um xBrowse (uso MySQL).
Vou mostrar uma lista de clientes e o usuário seleciona quais ele deseja.
Alguém indica um exemplo?
Obrigado!

Hello!
I need to select multiple rows in an xBrowse (MySQL usage).
I will show a list of clients and the user selects which ...
by ip_ram
Mon Sep 17, 2018 8:48 pm
Forum: All products support
Topic:
Replies: -1
Views:

Multi seleção xBrowse

Olá!

Preciso selecionar várias linhas em um xBrowse (uso MySQL).

Vou mostrar uma lista de clientes e o usuário seleciona quais ele deseja.

Alguém indica um exemplo?

Obrigado!

Rodrigo Melo
Belo Horizonte / MG
Brasil
by ip_ram
Thu Aug 09, 2018 7:15 pm
Forum: FiveWin para Harbour/xHarbour
Topic:
Replies: -1
Views:

Re: Error 1064 xBrowse MySQL

Dear Rao,

I thought using:
oPes := oDba:Query('select * from tb_pes')

It would be creating a connection of oDba and, with this, could be closed (oPes:Close()) without also closing the oDba connection (oDba:Close()).

And actually, oPes is an object with the result of Query ...

This understanding ...
by ip_ram
Thu Aug 09, 2018 3:35 am
Forum: FiveWin para Harbour/xHarbour
Topic:
Replies: -1
Views:

Re: Error 1064 xBrowse MySQL (solved)

Dear Rao,

I checked in the programs that I was closing the connection to the database when closing the Query () object at the end of xBrowse.

...
...

cSql := "select pac.id as 'ID',emp.nom_emp as 'Empresa',"+;
"pac.tit_pac as 'Destino',substr(pac.des_pac,1,50) as 'Detalhes' "+;
"from tb_pac as ...
by ip_ram
Wed Aug 08, 2018 4:47 pm
Forum: FiveWin para Harbour/xHarbour
Topic:
Replies: -1
Views:

Re: Error 1064 xBrowse MySQL

This error is shown not only when I try to access the tb_pac table ...

Is there a difference between the Query () and RowSet () commands to display data in the xBrowse?

I was able to retrieve the data and display it as it is in the code and now the error message is constant ... MySQL is in a ...
by ip_ram
Wed Aug 08, 2018 12:06 am
Forum: FiveWin para Harbour/xHarbour
Topic:
Replies: -1
Views:

Error 1064 xBrowse MySQL

Olá!

Estou recebendo o erro 1064 (figura) no xBrowse ao consultar uma tabela em MySQL na Internet.

//
// conectar

FWConnect oDba Host cServer User cUsrAdm PassWord cPasAdm DB cDtaBas

If oDba == Nil
oDba:ShowError()
MsgAlert("Não foi possível acessar o BD da aplicação","Atenção")
Return(.f ...