you can use Harbour or xHarbour.Uwe.Diemer wrote:II also want to change from Ads to MariaDb im using xHarbour should i change to Harbour ?
r´tx
bcc or msvc
32 bits or 64 bits
Compatible with all.
you can use Harbour or xHarbour.Uwe.Diemer wrote:II also want to change from Ads to MariaDb im using xHarbour should i change to Harbour ?
r´tx
Interesting! How is it possible? Can you explain in a few words, please?Antonio Linares wrote:https://fivetechsupport.com/forums/viewtopic.php?p=270797&sid=6a21201c0921588724b55c882db5adec#p270797
mod_Harbour working on bluehost where only php is accepted
https://www.fivetechsoft.com/counter/modpro_.php
FWH MariaDB internal library is available in all versions from 2017.Uwe.Diemer wrote:What Borland Version is needed and which FWH Version
Tx
Hi Nages,nageswaragunupudi wrote:FWH MariaDB internal library is available in all versions from 2017.Uwe.Diemer wrote:What Borland Version is needed and which FWH Version
Tx
If you are currently using any FWH Version from 2017 onwards, you can straightway use FWH's mariadb functionality with the same bcc and same fwh
Try samples\maria01.prg, maria02.prg. etc
I think you have a problem in your Maria Connection(Eg user name, password, etc). Could you show how are you doing this ?wartiaga wrote: Hi Nages,
I'm testing maria01.prg and I get this error:
Thanks!
Vilian I try maria01.prg (without any changes) in samples folder, I think this sample conects a cloud database, Am I wrong?vilian wrote:I think you have a problem in your Maria Connection(Eg user name, password, etc). Could you show how are you doing this ?wartiaga wrote: Hi Nages,
I'm testing maria01.prg and I get this error:
Thanks!
Code: Select all | Expand
#include "fivewin.ch"
REQUEST DBFCDX
static aStr := { "208.91.198.197:3306,fwhdemo,gnraofwh,Bharat@1950", ;
"209.250.245.152,fwh,fwhuser,FiveTech@2022" }
static oCn
function Main()
local aTables
SET DATE ITALIAN
SET CENTURY ON
FW_SetUnicode( .t. )
CursorWait()
oCn := maria_Connect( aStr[ 1 ], .t. )
aTables := oCn:ListTables()
XBROWSER oCn:ListTables() ;
TITLE "Dbl-Click to View Table" ;
SHOW RECID ;
SETUP ( ;
oBrw:aCols[ 1 ]:bLDClickData := { |r,c,f,o| ShowTable( o:Value ) }, ;
oBrw:bDropFiles := { |aFiles| xbrowse( aFiles ) } )
oCn:Close()
return nil
function ShowTable( cTable )
local oRs, nSecs := SECONDS()
if cTable == "custbig"
MsgRun( "Reading " + cTable, "Please wait", { || oRs := oCn:RecSet( cTable, -100 ) } )
else
MsgRun( "Reading " + cTable, "Please wait", { || oRs := oCn:RowSet( cTable ) } )
endif
nSecs := SECONDS() - nSecs
XBROWSER oRs TITLE cTable + " (" + cValToChar( nSecs ) + ") seconds" ;
FASTEDIT NOMODAL SHOW RECID
return nil