Auguri
Maurizio
Search found 832 matches
- Mon Mar 31, 2025 12:08 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: Silvio, Happy Birthday
- Replies: 14
- Views: 1766
- Fri Mar 07, 2025 11:31 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: Problem with FwMaria and oCn:BackUp
- Replies: 7
- Views: 1403
Re: Problem with FwMaria and oCn:BackUp
? oCn:TableExists( "worksheet", "mastronipe", @cType )
Return .t.
? cType
Return BASE TABLE
Return .t.
? cType
Return BASE TABLE
- Fri Mar 07, 2025 8:38 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: Problem with FwMaria and oCn:BackUp
- Replies: 7
- Views: 1403
Re: Problem with FwMaria and oCn:BackUp
Rao ,
::cError = "Table 'mastronipe.worksheet' doesn't exist"
but the table exists
03/07/25 09:21:44: FWMARIACONNECTION:EXECUTE_SQL( 6791 )
cCallStack( "<-", 3 ) = "FWMARIACONNECTION:EXECUTE( 7163 )
<-FWMARIACONNECTION:BACKUPTABLE( 9752 )
<-FWMARIACONNECTION:BACKUP( 9652 )
<-COPIA_1( 239 ...
::cError = "Table 'mastronipe.worksheet' doesn't exist"
but the table exists
03/07/25 09:21:44: FWMARIACONNECTION:EXECUTE_SQL( 6791 )
cCallStack( "<-", 3 ) = "FWMARIACONNECTION:EXECUTE( 7163 )
<-FWMARIACONNECTION:BACKUPTABLE( 9752 )
<-FWMARIACONNECTION:BACKUP( 9652 )
<-COPIA_1( 239 ...
- Thu Mar 06, 2025 1:45 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: Problem with FwMaria and oCn:BackUp
- Replies: 7
- Views: 1403
Re: Problem with FwMaria and oCn:BackUp
Ciao RAO
happy to hear from you again.
No, I didn't explain myself well, I copy the entire database not individual tables .
oCn:Backup( cDataBase , cDest )
or
oCn:Backup( cDataBase , cDest ,bAction )
Maurizio
happy to hear from you again.

No, I didn't explain myself well, I copy the entire database not individual tables .
oCn:Backup( cDataBase , cDest )
or
oCn:Backup( cDataBase , cDest ,bAction )
Maurizio
- Thu Mar 06, 2025 11:33 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: Problem with FwMaria and oCn:BackUp
- Replies: 7
- Views: 1403
Problem with FwMaria and oCn:BackUp
Hello,
I use the FwMaria backup program (vers.August-September 2024)
oCn:BackUp(cTable, cDestina )
With some databases this error occurs:
Stack Calls
===========
Called from: backupsql.prg => AEVAL( 0 )
Called from: .\source\internal\fwmaria.prg => FWMARIACONNECTION:BACKUPTABLE( 9754 )
Called ...
I use the FwMaria backup program (vers.August-September 2024)
oCn:BackUp(cTable, cDestina )
With some databases this error occurs:
Stack Calls
===========
Called from: backupsql.prg => AEVAL( 0 )
Called from: .\source\internal\fwmaria.prg => FWMARIACONNECTION:BACKUPTABLE( 9754 )
Called ...
- Mon Feb 24, 2025 8:11 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: Friends Let us all pray for Mr Nageswarao Gunupudi
- Replies: 32
- Views: 18784
Re: Friends Let us all pray for Mr Nageswarao Gunupudi
Our best wishes for a speedy recovery.
Maurizio
Maurizio
- Mon Dec 16, 2024 8:25 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: xHarbour to Harbour
- Replies: 14
- Views: 2650
Re: xHarbour to Harbour
Ciao Otto
in the Harbour doc folder there is this file
xhb-diff.txt
Maurizio
in the Harbour doc folder there is this file
xhb-diff.txt
Maurizio
- Tue Nov 26, 2024 9:01 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: Happy birthday dear Antonio
- Replies: 11
- Views: 3088
Re: Happy birthday dear Antonio
Happy birthday Antonio
Maurizio
Maurizio
- Wed Nov 13, 2024 7:56 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: xHarbour can produce HTTP server ?
- Replies: 11
- Views: 2938
Re: xHarbour can produce HTTP server ?
Hello Duch ,
I started from
C:\harbour\contrib\hbhttpd
Maurizio
I started from
C:\harbour\contrib\hbhttpd
Maurizio
- Mon Oct 21, 2024 4:30 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: MariaDb how use locate for a date SOLVED
- Replies: 5
- Views: 967
Re: MariaDb how use locate for a date SOLVED
Thanks RAO ,
? cLocate := oCn:ExprnDBF( "HIREDATE = ?", { DATE() } )
oRs:locate( cLocate )
This code works , where oCn is the connection and oRs is the recordset
but
? cFilter := oCn:ExprnDBF( "STATE = ? .AND. AGE >= ?", { "NY", 45 } )
where is the recordset ?
Maurizio
? cLocate := oCn:ExprnDBF( "HIREDATE = ?", { DATE() } )
oRs:locate( cLocate )
This code works , where oCn is the connection and oRs is the recordset
but
? cFilter := oCn:ExprnDBF( "STATE = ? .AND. AGE >= ?", { "NY", 45 } )
where is the recordset ?
Maurizio
- Mon Oct 21, 2024 1:01 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: MariaDb how use locate for a date SOLVED
- Replies: 5
- Views: 967
Re: MariaDb how use locate for a date
Thanks Vilian
it works correctly
Maurizio
it works correctly

Maurizio
- Mon Oct 21, 2024 8:58 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: MariaDb how use locate for a date SOLVED
- Replies: 5
- Views: 967
MariaDb how use locate for a date SOLVED
Hello Rao ,
in a select when I search for a date I use
SELECT * FROM customer WHERE HIREDATE= " +DTOS(DATE())
How do I use the date search with locate?
I tried
cLocate := " HIREDATE = '" + DTOS(DATE()) + "'"
But I have this error
Error occurred at: 10/21/24, 10:57:32
Error description: Error ...
in a select when I search for a date I use
SELECT * FROM customer WHERE HIREDATE= " +DTOS(DATE())
How do I use the date search with locate?
I tried
cLocate := " HIREDATE = '" + DTOS(DATE()) + "'"
But I have this error
Error occurred at: 10/21/24, 10:57:32
Error description: Error ...
- Fri Oct 04, 2024 2:46 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: GPF with FW August 2024
- Replies: 32
- Views: 5735
Re: GPF with FW August 2024
RAO
I tested with xHarobour 32 bits, Harbour bcc32, msvc32
with FWH2409 and FWH2307
All worked the same way without any problems.
as I said I have FW 24.07 (August 2024 purchased on 11.09.24) and the problem is there.
Before purchasing a new FW 24.09 version I would like to be sure it works ...
I tested with xHarobour 32 bits, Harbour bcc32, msvc32
with FWH2409 and FWH2307
All worked the same way without any problems.
as I said I have FW 24.07 (August 2024 purchased on 11.09.24) and the problem is there.
Before purchasing a new FW 24.09 version I would like to be sure it works ...
- Fri Oct 04, 2024 12:47 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: GPF with FW August 2024
- Replies: 32
- Views: 5735
Re: GPF with FW August 2024
karinha
Thanks for the help but
You definitely don't use August 2024
Maurizo
Thanks for the help but
You definitely don't use August 2024
Maurizo
- Fri Oct 04, 2024 6:53 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: GPF with FW August 2024
- Replies: 32
- Views: 5735
Re: GPF with FW August 2024
Hello Rao ,
https://drive.google.com/file/d/1ZUATcFLR1x38sMbAvowTpt1dMGeidZeF/view?usp=sharing
if you use the PRG of Enrico's you have to change this line
// cSchema := 'FoglioStileAssoSoftware.xsl'
cSchema := 'http:\\www.nipeservice.it\FS\FoglioStile.xsl'
and
cFile := 'FATTURA.xml ...
https://drive.google.com/file/d/1ZUATcFLR1x38sMbAvowTpt1dMGeidZeF/view?usp=sharing
if you use the PRG of Enrico's you have to change this line
// cSchema := 'FoglioStileAssoSoftware.xsl'
cSchema := 'http:\\www.nipeservice.it\FS\FoglioStile.xsl'
and
cFile := 'FATTURA.xml ...