Search found 78 matches: dbinfo

Return to advanced search

Re: come recuperare il codice fivewin da .c file

... NOME */ HB_P_PUSHNIL, HB_P_PUSHNIL, HB_P_FALSE, HB_P_PUSHNIL, HB_P_DOSHORT, 7, /* 00049 */ HB_P_LINEOFFSET, 3, /* 141 */ HB_P_PUSHSYMNEAR, 4, /* DBINFO */ HB_P_PUSHNIL, HB_P_PUSHINT, 131, 0, /* 131 */ HB_P_PUSHLOCALNEAR, 2, /* PASSWORD */ HB_P_DOSHORT, 2, /* 00061 */ HB_P_LINEOFFSET, 4, /* 142 ...
by Antonio Linares
Mon Feb 12, 2024 9:55 pm
 
Forum: All products support
Topic: come recuperare il codice fivewin da .c file
Replies: 7
Views: 321

Difference hb_rddInfo( RDDI_LOCKSCHEME ) vs. DBINFO( DBI_LOC

hi, what is the Difference of    nRDD := hb_rddInfo( RDDI_LOCKSCHEME )   // vs.   nRDD := DBINFO( DBI_LOCKSCHEME )  Result is different   CASE nRDD = DB_DBFLOCK_DEFAULT      cRDD := "DB_DBFLOCK_DEFAULT"   CASE nRDD = DB_DBFLOCK_VFP      cRDD := ...
by Jimmy
Wed May 03, 2023 5:21 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Difference hb_rddInfo( RDDI_LOCKSCHEME ) vs. DBINFO( DBI_LOC
Replies: 0
Views: 141

Re: XBrowse con xBase - Efecto Pijama - Error en Red

... if ( ( ::cAlias )->( RDDName() ) == "DBFCDX" ) * if ( ::cAlias )->( LASTREC() ) > 10000 .and. lFileIsRemote( ( ::cAlias )->( DBINFO( DBI_FULLPATH ) ) ) * DEFAULT ::bKeyNo := { |n| ( ::cAlias )->( If( n == nil, OrdKeyRelPos() * ::nLen, ; * If( Empty( OrdSetFocus() ), OrdKeyGoTo( ...
by José
Tue Mar 21, 2023 2:41 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: XBrowse con xBase - Efecto Pijama - Error en Red
Replies: 3
Views: 385

dbinfo.ch header file

... as specified by the constants below. Note, however, that not all constants are supported for all RDDs. These constants are defined in the dbinfo.ch header file, which must be included (#include) in your application."    use ("customer2.dbf") new   ...
by Otto
Sun Oct 23, 2022 12:41 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: dbinfo.ch header file
Replies: 0
Views: 151

Re: How code obfuscation helps protect application data

Rick and Otto, in your opinion a dbfcdx table encrypted with and populated LOCAL cPassword := "12345678" SELECT 0 USE customers DBINFO( DBI_PASSWORD, cPassord ) can a skilled hacker to decode the content of customers.dbf ? perhaps even knowing the clipper world (dbfcdx = clipper) ...
by MarcoBoschi
Tue May 17, 2022 10:24 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: How code obfuscation helps protect application data
Replies: 11
Views: 1353

Re: Timestamp DBF

Try
dbInfo(DBI_LASTUPDATE) --> Returns the last date on which the file was updated
The constants are defined in dbinfo.ch

I believe that it is the same as Same as LUpdate()
by anserkk
Tue Apr 05, 2022 10:35 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Timestamp DBF
Replies: 3
Views: 265

Re: dbase III/IV file encrypted

Inside dbinfo.ch:

Code: Select all  Expand view
#define DBI_PASSWORD            131  /* Workarea password */


Please update your Harbour or xHarbour compiler.

EMG
by Enrico Maria Giordano
Sat Jan 29, 2022 1:50 pm
 
Forum: All products support
Topic: dbase III/IV file encrypted
Replies: 8
Views: 979

Re: dbase III/IV file encrypted

Cannot find definition for DBI_PASSWORD here are all DBI_ the constant i found for dbinfo() /* constants for dbInfo() */ #define DBI_ISDBF 1 /* Does this RDD support DBFs? */ #define DBI_CANPUTREC 2 /* Can this RDD Put Records? */ #define DBI_GETHEADERSIZE 3 /* Data ...
by lorenzoazz
Sat Jan 29, 2022 1:17 pm
 
Forum: All products support
Topic: dbase III/IV file encrypted
Replies: 8
Views: 979

Re: FW_EXCELTODBF with tdatabase

I think that you need to have a alias active for that file.

select DBINFO // target for the exeltodbf
FW_ExcelToDBF( oRange, nil, .t. )
by Marc Venken
Wed Jan 19, 2022 4:38 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: FW_EXCELTODBF with tdatabase
Replies: 4
Views: 325

Re: urgent bugs lastest FWH and SQLRDD

I use rlock() and unlock.

Also, DbInfo( DBI_ISFLOCK ) works.
by MOISES
Sat Jan 04, 2020 8:18 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: urgent bugs lastest FWH and SQLRDD
Replies: 12
Views: 2972

Re: urgent bugs lastest FWH and SQLRDD

Hello, Thanks for your quick reply. DbInfo( DBI_ISFLOCK ) does work in SQLRDD. But not DbRecordInfo( DBRI_LOCKED, RECNO() ) ) This was working savedbf() method in FW 14.14, that worked great: METHOD SaveDBF() CLASS TDataRow   local ...
by MOISES
Tue Dec 31, 2019 8:10 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: urgent bugs lastest FWH and SQLRDD
Replies: 12
Views: 2972

Re: urgent bugs lastest FWH and SQLRDD

- In datarow.prg, method savedbf(), at line 1332: Code: if !( DbInfo( DBI_ISFLOCK ) .or. DbRecordInfo( DBRI_LOCKED, RECNO() ) ) It is not supported by SQLRDD. Then, how to know if the record or file is already locked? - In xbrowse, vertical scroll bar ...
by nageswaragunupudi
Tue Dec 31, 2019 2:32 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: urgent bugs lastest FWH and SQLRDD
Replies: 12
Views: 2972

Re: errorsysw.prg

( cAlias )->( DBINFO( DBI_FULLPATH ) ) --> cFileName

You need to include "dbinfo.ch"
by nageswaragunupudi
Wed Jan 30, 2019 3:32 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: errorsysw.prg
Replies: 2
Views: 791

Re: Proteccion de DBF

Creo que el encriptado ADS no es superior al propio de las DBFs de Harbour, usando el Use MiTabla dBInfo( DBI_PASSWORD, 'miclavesupersecreta' ) con eso ya tienes lo mismo (creo), ya que ambos son a nivel de registro. De todas maneras el algoritmo de encriptado es MUY SENCILLO ...
by Carlos Mora
Mon Mar 12, 2018 7:04 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Proteccion de DBF
Replies: 16
Views: 3156

dbInfo2xBrowse

Hello, I inserted the dbInfo description into an array to show the Infos in a Xbrowse. Best regrads, Otto function f_dbInfo()        local aDBInfo := {}        AADD( aDBInfo, ...
by Otto
Sat Mar 10, 2018 9:16 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: dbInfo2xBrowse
Replies: 0
Views: 615
Next

Return to advanced search