Search found 824 matches

by MOISES
Fri Feb 26, 2021 1:24 am
Forum: FiveWin for Harbour/xHarbour
Topic: MARIADB Export Rowset
Replies: 5
Views: 4469

Re: MARIADB Export Rowset

Yes, it works correctly, it exports the rows.

But what I would really need would be the backup() method for ADO, to save in a txt file the content of the database in SQL mode INSERT INTO CITIES( CODE, CITY ) VALUES ( "1", "Madrid") ...

Would it be possible please?
by MOISES
Thu Feb 25, 2021 6:03 pm
Forum: FiveWin for Harbour/xHarbour
Topic: MARIADB Export Rowset
Replies: 5
Views: 4469

Re: MARIADB Export Rowset

Mr. Rao,

Can we please have this SqlToText for ADO?

Thank you
by MOISES
Thu Feb 25, 2021 1:07 pm
Forum: FiveWin para Harbour/xHarbour
Topic: Comportamiento ultima version Harbour (r2101261627) SOLVED
Replies: 12
Views: 46827

Re: Comportamiento ultima version Harbour (r2101261627) SOLVED

Hola, Si se cambia el compilador por defecto en Windows, debería ser MSVC, que es con el que está construido el propio SO. A mi juicio, pretender usar Mingw en Windows por defecto es como si Word fuera el procesador por defecto en Linux. A no se que haya otra razón que se me haya escapado. Un saludo
by MOISES
Fri Jan 22, 2021 8:05 am
Forum: FiveWin for Harbour/xHarbour
Topic: illegal copy protection
Replies: 9
Views: 7477

Re: illegal copy protection

Thank you very much Tim.

Please could you share the function you use to download the files over the internet?
by MOISES
Thu Jan 21, 2021 6:53 pm
Forum: FiveWin for Harbour/xHarbour
Topic: illegal copy protection
Replies: 9
Views: 7477

Re: illegal copy protection

Timm,

Please can you share how you do the upgrade? Antivirus usually block this kind of actions.

Thank you very much.
by MOISES
Wed Jan 20, 2021 12:10 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Silvio: Reports
Replies: 16
Views: 57086

Re: Silvio: Reports

Hello Antonio,

Wonderful news! I would like to please also test the beta.

Best regards
by MOISES
Mon Jan 11, 2021 6:13 pm
Forum: FiveWin para Harbour/xHarbour
Topic: Happy Birthday, Mr. Cristobal Navarro Lopez
Replies: 14
Views: 9884

Re: Happy Birthday, Mr. Cristobal Navarro Lopez

Muchas felicidades Cristóbal, y muy agradecido por tus contribuciones y ayudas tan generosas.

Que tengamos sobre todo mucha salud este 2021.
by MOISES
Thu Jul 16, 2020 8:56 am
Forum: FiveWin para Harbour/xHarbour
Topic: xbrowse fwh2006 sqlrdd erro
Replies: 24
Views: 6004

Re: xbrowse fwh2006 sqlrdd erro

I haven't detected the problem so far.

Yes, SQLRDD supports OrdDescend()

Anyway, without a self-contained example it is impossible to debug.
by MOISES
Sat Jun 20, 2020 2:27 pm
Forum: FiveWin for Harbour/xHarbour
Topic: FWH 16.06: MariaDb/MySql Backup and Restore (Updated 16.08)
Replies: 48
Views: 22310

Re: FWH 16.06: MariaDb/MySql Backup and Restore (Updated 16.08)

Yes, in case of network use or a transaction.

The ideal is that Ado funcion would work with MySql, mssql, acess, etc as the rest of your great ado funcions.
by MOISES
Sat Jun 20, 2020 10:59 am
Forum: FiveWin for Harbour/xHarbour
Topic: FWH 16.06: MariaDb/MySql Backup and Restore (Updated 16.08)
Replies: 48
Views: 22310

Re: FWH 16.06: MariaDb/MySql Backup and Restore (Updated 16.08)

Thank you very much!

Will support Access too?
by MOISES
Thu Jun 11, 2020 7:26 pm
Forum: FiveWin for Harbour/xHarbour
Topic: xBrowse and SQLRDD bug
Replies: 18
Views: 5179

Re: xBrowse and SQLRDD bug

First of all, thank you for your time. It fails when the DBF has an index. Please add this changes: USE states SHARED NEW VIA "SQLRDD"   index on field->CODE TAG NAGES1   GO BOTTOM   XBROWSER "STATES" FASTEDIT SHOW RECID TITLE FWVERSION + " " + RDDNAME()   DBCLOSEALL() ...
by MOISES
Thu Jun 11, 2020 3:31 pm
Forum: FiveWin para Harbour/xHarbour
Topic: Pasando (por fin) a hbmk2 *SOLUCIONADO*
Replies: 23
Views: 6662

Re: Pasando (por fin) a hbmk2 *SOLUCIONADO*

¿Te funciona buildh loquesea.prg?
by MOISES
Thu Jun 11, 2020 3:02 pm
Forum: FiveWin para Harbour/xHarbour
Topic: Pasando (por fin) a hbmk2 *SOLUCIONADO*
Replies: 23
Views: 6662

Re: Pasando (por fin) a hbmk2 *SOLUCIONADO*

Mira borland32.cfg e ilink32.cfg por si acaso.
by MOISES
Thu Jun 11, 2020 12:14 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Brw:VGoBottom() does not work in xBrowse [SOLVED]
Replies: 4
Views: 2270

Re: Brw:VGoBottom() does not work in xBrowse [solved]

Thanks to Cristobal´s help, this is the fix: METHOD KeyCount() CLASS TXBrowse    TRY       if Empty( ::aFilter )          ::nLen   := Eval( ::bKeyCount )       else          ::nLen   := Len( ::aFilter )       endif       ::lClosed   := .f.    CATCH       ::nLen      := 0       ::lClosed   := .t.    ...
by MOISES
Thu Jun 11, 2020 12:12 pm
Forum: FiveWin para Harbour/xHarbour
Topic: problemas con xBrowse: NO FUNCIONA oBrw:VGoBottom() [solucio
Replies: 3
Views: 2173

Re: problemas con xBrowse: NO FUNCIONA oBrw:VGoBottom()

Gracias a la ayuda de Cristóbal, este es el fix: METHOD KeyCount() CLASS TXBrowse    TRY       if Empty( ::aFilter )          ::nLen   := Eval( ::bKeyCount )       else          ::nLen   := Len( ::aFilter )       endif       ::lClosed   := .f.    CATCH       ::nLen      := 0       ::lClosed   := .t....