Search found 55 matches: dbi

Return to advanced search

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 := "[V]FP, CL52 DBFCDX, SIx...
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: 146

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

Esto es usando DBFCDX, y ocurre solo con tablas xBase de más de 10.000 registro, por lo que comentando estas líneas (marcadas con *) en XBrowse.prg el problema se resuelve METHOD SetRDD( lAddColumns, lAutoOrder, aFldNames, aRows ) CLASS TXBrowse :::::: else if ( ( ::cAlias )->( RDDName() ) == &qu...
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: 406

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 downlo...
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: 1368

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: 266

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 file's header size */ #define DBI...
by lorenzoazz
Sat Jan 29, 2022 1:17 pm
 
Forum: All products support
Topic: dbase III/IV file encrypted
Replies: 8
Views: 1146

Re: dbase III/IV file encrypted

I tried the suggestion but i cannot find DBI_PASSWORD definition. #include "Dbinfo.ch" Anyway my intent is to make the dbf unreadable by normal dbf tools, to protect privacy outside from the specific software that created and use the dbf. That's exactly what you achieve using DBI_PASSWORD...
by Enrico Maria Giordano
Sat Jan 29, 2022 9:58 am
 
Forum: All products support
Topic: dbase III/IV file encrypted
Replies: 8
Views: 1146

Re: dbase III/IV file encrypted

I tried the suggestion but i cannot find DBI_PASSWORD definition.

Anyway my intent is to make the dbf unreadable by normal dbf tools, to protect privacy outside from the specific software that created and use the dbf.

Lorenzo
by lorenzoazz
Sat Jan 29, 2022 9:51 am
 
Forum: All products support
Topic: dbase III/IV file encrypted
Replies: 8
Views: 1146

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: 2978

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 n, nCols    := ::FCount()  ...
by MOISES
Tue Dec 31, 2019 8:10 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: urgent bugs lastest FWH and SQLRDD
Replies: 12
Views: 2978

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 does not work. Is there any function equivalent...
by nageswaragunupudi
Tue Dec 31, 2019 2:32 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: urgent bugs lastest FWH and SQLRDD
Replies: 12
Views: 2978

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: 794

Re: Proteccion de DBF

El asunto del reglamento europeo de proteccion de datos y Harbour / Dbfs tiene su miga. No nos vale con encriptar la cabecera de la dbf. Un excel, es posible que la abra porque no mira la cabecera. El DBI_PASSWORD sólo encripta si la dbf *no* tiene campos memo. Aun funcionando lo anterior, se nos qu...
by hmpaquito
Mon Mar 12, 2018 8:50 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Proteccion de DBF
Replies: 16
Views: 3196

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 en ambos casos, cualqui...
by Carlos Mora
Mon Mar 12, 2018 7:04 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Proteccion de DBF
Replies: 16
Views: 3196

New FTDN January/Enero 2018 (FWH 18.01)

January 2018 ============ * Enhancement: Class TDialog Method Command() has been enhanced for controls TEdit: http://forums.fivetechsupport.com/viewtopic.php?p=208451#p208451 many thanks to Antonino for his help! * Fix: Class TXImage Method MouseMove() now properly shows the tooltip if defined: http...
by Antonio Linares
Wed Feb 14, 2018 5:03 pm
 
Forum: WhatsNew / Novedades
Topic: New FTDN January/Enero 2018 (FWH 18.01)
Replies: 1
Views: 2577

Re: GDPR - General Data Protection Regulation

So, it seems dbf files with memo field is not possible for encrypting, neither in harbour nor in xharbour. Yes, you're right. I checked and I used that only for DBF without memo fields. do you use DBI_PASSWORD in production programs ? pls Yes. how to encrypt dbf files ? pls As I already wrote: DBIN...
by Enrico Maria Giordano
Wed Dec 27, 2017 7:00 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: GDPR - General Data Protection Regulation
Replies: 19
Views: 3751
Next

Return to advanced search