Search found 78 matches: dbinfo

Return to advanced search

Re: Close the sistem

... .t. is to adjust XP / ... W98, the second adjusts the view. MsgInfo ('Registration not set windows!') EndIf EndIf removed from database class. DBINFO (DBI_SHARED) how to use DBF + CDX acrecentei the opening of the main .PRG AutoShare SET TO 0 recreated with all dbf HARBOUR and updated and finally ...
by aferra
Mon Sep 01, 2014 12:27 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Close the sistem
Replies: 15
Views: 3530

Re: Close the sistem

... (.t.,. T.) // First .t. is to adjust XP / ... W98, the second adjusts the view. MsgInfo ('Registration not set windows!') EndIf EndIf and took the DBINFO (DBI_SHARED, .F.) opening dbf Only Tomorrow I will have the results.
by aferra
Mon Aug 18, 2014 10:35 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Close the sistem
Replies: 15
Views: 3530

Re: Slow RDD experiences

... It takes 2 minutes to read 1200 records into an array. That same action takes 3 to 5 seconds on the terminal server. I added the line "DBINFO (DBI_SHARED,.F.)" but I can't notice any difference. Keep looking because it is a very big and urgent problem. Thanks.
by driessen
Wed Jun 04, 2014 9:03 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Slow RDD experiences
Replies: 45
Views: 7640

Re: Slow RDD experiences

Michel,

it is in Dbinfo.ch.

EMG
by Enrico Maria Giordano
Wed Jun 04, 2014 8:15 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Slow RDD experiences
Replies: 45
Views: 7640

Re: Slow RDD experiences

I tried to use "dbInfo( DBI_SHARED,.F.)" but I got an error : DBI_SHARED : variable does not exist.

Quid?
by driessen
Wed Jun 04, 2014 7:59 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Slow RDD experiences
Replies: 45
Views: 7640

Re: Experiencias de RDDs lentos

Antonio,

Si se trabaja en red local y las estaciones, añaden registros, editan, borran, etc, si se pone dbInfo( DBI_SHARED, .F. ) entonces ¿se corromperán los datos?.

Muy agradecida!!
by elvira
Tue Jun 03, 2014 2:19 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Experiencias de RDDs lentos
Replies: 42
Views: 14516

Re: Slow RDD experiences

Marco,

have you ever tried dbInfo( DBI_SHARED, .F. ) ? Just in the cases where you are reading data.

Docs are above.
by Antonio Linares
Fri May 30, 2014 2:25 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Slow RDD experiences
Replies: 45
Views: 7640

Re: Experiencias de RDDs lentos

Maestro, puedes hablar/explicar más un poco sobre esto: DBINFO() http://www.itlnet.net/programming/program/reference/c53g01c/ng28fbc.html DBORDERINFO() http://www.itlnet.net/programming/program/reference/c53g01c/ng2a6f6.html dbinfo.ch https://github.com/vszakats/harbour-core/blob/master/include/dbinfo.ch ...
by karinha
Thu May 29, 2014 6:08 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Experiencias de RDDs lentos
Replies: 42
Views: 14516

Re: Slow RDD experiences

cmxshared(.f.) or dbInfo( DBI_SHARED, .F. ) is used after you open the .dbf so it can be used on the network. For instance use mydbf share via "DBFCDX"dbInfo( DBI_SHARED, .F. )set order to 1skip while .not. eof()  ...
by Gale FORd
Thu May 29, 2014 4:55 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Slow RDD experiences
Replies: 45
Views: 7640

Re: Experiencias de RDDs lentos

... que aún tengais este problema de lentitud, aqui teneis una función muy simple que puede ayudar mucho: function TurnShared( lOnOff )return dbInfo( DBI_SHARED, lOnOff )  ó simplemente llamar a dbInfo( DBI_SHARED, .F. ) Os agradezco vuestros comentarios con los resultados de ...
by Antonio Linares
Thu May 29, 2014 4:06 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Experiencias de RDDs lentos
Replies: 42
Views: 14516

Re: Slow RDD experiences

... still have the slowness problem, here you have a very simple function that can help you very much: function TurnShared( lOnOff )return dbInfo( DBI_SHARED, lOnOff )  or simply call dbInfo( DBI_SHARED, .F. ) I appreciate your feedback regarding this function. Its behavior ...
by Antonio Linares
Thu May 29, 2014 4:04 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Slow RDD experiences
Replies: 45
Views: 7640

New FTDN September/Septiembre 2013 (FWH 13.09)

... of footers and headess when oBrw:lFlatStyle is .t. is improved. * Fix: xbrowse: It is reported that in some older versions of xHarbour / SQLRDD, DBINFO( DBI_READONLY ) is returning NIL instead of logical value, resulting in runtime errors. This unexpected behavior is taken care of now. * New: ...
by Antonio Linares
Wed Oct 30, 2013 3:14 pm
 
Forum: WhatsNew / Novedades
Topic: New FTDN September/Septiembre 2013 (FWH 13.09)
Replies: 1
Views: 2808

Re: SqlQuery and Microsoft.ACE.OLEDB.12.0 error

... in a global variable and open USE ( cPath + "\MYDATA.DBF" ) ................ TDataBase class tries to obtain the folder name by calling DBINFO( DBI_FULLPATH ) If a DBF is opened without building the correct path info while opening the DBF, there is no way TDataBase can establish a valid ...
by nageswaragunupudi
Mon Oct 14, 2013 2:29 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: SqlQuery and Microsoft.ACE.OLEDB.12.0 error
Replies: 14
Views: 3756

Re: xbrowse - SQLRDD error

Sr. Nages,

and here:

static function SetColFromRDD( oCol, uData )

if DBINFO( DBI_ISREADONLY ) .or. oCol:lReadOnly
oCol:bOnPostEdit := { || nil }
else
by MGA
Wed Oct 02, 2013 11:06 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: xbrowse - SQLRDD error
Replies: 10
Views: 2433

Re: xbrowse - SQLRDD error

Sr. Nages, ? VALTYPE( DBINFO( DBI_ISREADONLY )) RETURN: U In the present version valtype returns 'L' In your case, please locate the line   ::lReadOnly    := ( ::cAlias )->( DbInfo( DBI_ISREADONLY ) ...
by nageswaragunupudi
Wed Oct 02, 2013 3:54 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: xbrowse - SQLRDD error
Replies: 10
Views: 2433
PreviousNext

Return to advanced search

cron