topic stringlengths 1 63 | text stringlengths 1 577k ⌀ |
|---|---|
dbf file extension | Richard, thank you.
Regards,
Otto |
dbf file extension | Hi,
ADS can be the solution CRYPT the tables, with or without dictionary
regards
Marcelo |
dbf file extension | Hi All !
If you did to hide your file , how to get the files, with this function :
use .... to open dbffile
file(..... to check if file exist
fread(....to open file
regards
Fafi |
dbf file extension | USE will open hidden files
FILE( .. ) can not see hidden files. But DIRECTORY( *.*, "H" ) lists hidden files also. So hiding a file is not a reliable solution.
FOPEN( .. ) . I guess will open hidden files also. |
dbf file extension | Hi Otto
Firstly, to answer your question:
Yes I am using xHarbour/FiveLinux as my main development platform now. I am still using .dbf files too.
I have used SQL before (and wrote a development environment that used it not only to store data, but also to store the program itself as metadata to be served up as dynam... |
dbf file extension | Hi Otto
If the problem is an Excel user accessing important files just maybe we are on the wrong tack.
If his/her prying is of no value then he/she should be stomped on.
But if there is some purpose to his/her fiddling then maybe the answer is to provide a way for him/her to download the information he/she needs fro... |
dbf file extension | [quote:9e0v22zw]Yes, you can open them using the extension that you want or use RddInfo( RDDI_TABLEEXT, ".abc" ) so it will be used by default.
#define RDDI_TABLEEXT 5 /* Default data file's file extension */
#define RDDI_MEMOEXT 6 /* Default memo file's file extension */
#define RDDI_ORDBAGEXT 7 /* Default multi tag ... |
dbf file extension | Change the extension with the above functions. Open the table and again use the same functions to restore original extensions |
dbf file extension | Hello Mr. Rao,
thank you for your help.
Best regards,
Otto |
dbf to Xml | is there a function to create a xml from a dbf ? |
dbf to Xml | Silvio,
If you need to do it in a non programmatically way, then you can use i.e. OpenOffice calc to open the DBF and save it as XML:
[url=http://imageshack.us:1z9zwqwp][img:1z9zwqwp]http://img242.imageshack.us/img242/5546/capturecl5.png[/img:1z9zwqwp][/url:1z9zwqwp]
If you want to do it progr... |
dbf to Xml | Also try the following sample:
[code:2dcanasl]#define adOpenForwardOnly 0
#define adOpenKeyset 1
#define adOpenDynamic 2
#define adOpenStatic 3
#define adLockReadOnly 1
#define adLockPessimistic 2
#define adLockOptimistic 3
#define adLockBatchOptimistic 4
#define adPersistXML 1
FUNCTI... |
dbf to Xml | thanks to all
and How I can make with a prg ( xharbour and fwh) to converte a XML to a DBF ? |
dbf to Xml | Hello Silvio,
Timm (<!-- m --><a class="postlink" href="http://www.reportdesigner.info/">http://www.reportdesigner.info/</a><!-- m -->) has a XML-reader class for download on his homepage.
Regards,
Otto |
dbf to Xml | [code:3fxc5ved]FUNCTION MAIN()
LOCAL oStream, oRs
oStream = CREATEOBJECT( "ADODB.Stream" )
oStream:Open()
oStream:WriteText( MEMOREAD( "TEST.XML" ) )
oStream:Position = 0
oRs = CREATEOBJECT( "ADODB.Recordset" )
oRs:Open( oStream )
oStream:Close()
... |
dbf to Xml | I must Know the fields of archive ?
I have these on the top of this archive
I have a sample XML
look it pls
[code:1qmsg2wp] <?xml version="1.0" standalone="yes" ?>
- <DATAPACKET Version="2.0">
- <METADATA>
- <FIELDS>
<FIELD attrname="ICLSSESMATID" fieldtype="i4" required="true" />
<FIELD attrname="IMA... |
dbf to Xml | [code:1yy98pht]FUNCTION MAIN()
LOCAL oStream, oRs
LOCAL i
oStream = CREATEOBJECT( "ADODB.Stream" )
oStream:Open()
oStream:WriteText( MEMOREAD( "TEST.XML" ) )
oStream:Position = 0
oRs = CREATEOBJECT( "ADODB.Recordset" )
oRs:Open( oStream )
oStream&... |
dbf to Xml | Otto,
> Timm (<!-- m --><a class="postlink" href="http://www.reportdesigner.info/">http://www.reportdesigner.info/</a><!-- m -->) has a XML-reader class for download on his homepage.
Is it free ?
If yes, could you please copy its source code here ? thanks <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-... |
dbf to Xml | Antonio,
The download link is titled as freeware.
Best regards,
Otto
<!-- m --><a class="postlink" href="http://www.reportdesigner.info/">http://www.reportdesigner.info/</a><!-- m -->
[img:3sg8rkuq]http://www.atzwanger-software.com/fw/easyreport.jpg[/img:3sg8rkuq] |
dbf to Xml | Dear OTTO, Antonio
the class XML of <!-- m --><a class="postlink" href="http://www.reportdesigner.info/">http://www.reportdesigner.info/</a><!-- m --> is not free !!!!!!!!!!!!!!!!!
I cannot see the source class but only the lib and iclude files. |
dbf to Xml | Hi Silvio
A function for converting dbf to xml is pretty easy - I don't have my code to hand but could look it out.
You have two choices to make.
You can either use (x)Harbour's built in XML class or just write out as text.
You can either include the structure information as well (great if you then want to reconstr... |
dbf to Xml | What's wrong with my sample using ADO?
EMG |
dbf to Xml | Hi
Maybe?
[url:wvzg2l99]http://forums.fivetechsupport.com/viewtopic.php?f=6&t=4116[/url:wvzg2l99]
[url:wvzg2l99]http://forums.fivetechsupport.com/viewtopic.php?f=6&t=4144[/url:wvzg2l99]
Saludos
Ernesto |
dbf to Xml | Hi Enrico
I implied nothing wrong with your solution - but we don't all work in environments with ADO and its quite simple to do natively in (x)Harbour.
In programming there are often multiple ways to achieve a required outcome, and the best way is often site/environment specific. Personally I prefer solutions that ... |
dbf to Xml | Hi all,
Is there any Sample PRG available demonstrating how to convert a DBf to XML programatically using Native FWH xHarbour without using ADO. Mr.Enrico has already provided a sample above in this thread showing the conversion using ADO
Is there any class available to convert a DBF to XML.
Regards
Anser |
dbf to Xml | Anser,
this function may help you
[code=fw:3ache1lr]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #B900B9;">/*<br />/ Dbf2Xml. Utilidad de conversion de ficheros DBF a XML<br />/ mediante transformacion XSL con salida HTML<br />/ (C) 2003. Joaquim Ferrer Godoy<br />/ Inicio: 16-07-... |
dbf to Xml | Thank you Mr.Stefan
Regards
Anser |
dbf to Xml | >Is there any class available to convert a DBF to XML.
There is another DBF to XML conversion program on my website here:
[url:mqo0bx7k]http://www.goIntellitech.com/program.htm[/url:mqo0bx7k]
Regards,
James |
dbf to Xml | Dear Mr.James,
Thank you for the information. Very useful code
Regards
Anser |
dbf to Xml | Enrico,
When I try to run your XML to DBF code (using ADO), I get the following error:
Error description: Error ADODB.Recordset/6 DISP_E_UNKNOWNNAME: OPEN
Args:
[ 1] = O Object
Stack Calls
===========
Called from: source\rtl\win32ole.prg => TOLEAUTO:OPEN(0)
Called from: XML2DBF3.prg => MAIN(24)... |
dbf to Xml | Can you send to my private email the XML file you are testing?
Be patient as I will probably can't answer in the next days.
EMG |
dbf to Xml | Enrico,
It doesn't have anything to do with the XML file as the code hasn't tried to open the file yet. Here is the only code that has been executed:
[code=fw:2c3lank3]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00C800;">FUNCTION</span> MAIN<span style="color: #000000;">(</span>... |
dbf to Xml | Mr James
Your code is working perfect for me. ( on XP )
I am not getting any errors.
MsgInfo( oStream:State ) --> returns 1 ( 1 for opened )
Will you please check again ? |
dbf to Xml | Rao,
>MsgInfo( oStream:State ) --> returns 1
oStream:State is returning 0 for me (under XP Pro, SP3).
This is my concern and that of others. Even though oStream is showing as an object, apparently the needed components are not installed on my computer. If you are creating an application for a single site, then perha... |
dbf to Xml | Mr James
I agree with you.
But to the best of my knowledge and experience, ADO is working on all PCs with XP, with the *default* installation. This is my experience with an organization with about 500 XPs and also that of my friends here.
In fact I am surprised why it is not working on your XP or some other XPs. Ma... |
dbf to Xml | Rao,
After reading your comments about it working on all your XP PCs, I took another look.
My mistake! I had not looked at the line number of the error, and I assumed it was erroring out on:
oStream:Open()
But, in fact, it was erroring out on:
oRS:Open( oStream )
But, I still don't know why I am getting this erro... |
dbf to Xml | Just sent.
EMG |
dbf to Xml | Enrico,
If you sent it to me, I didn't get it. Please try again.
James |
dbf to Xml | Please download it from here:
[url:ddq4snmp]http://www.emagsoftware.it/testxml.zip[/url:ddq4snmp]
EMG |
dbf to Xml | Enrico,
Thanks, I have the file and it is working with the demo program you supplied.
However, your program does not actually create a DBF. Do you have an example of how to read the field information and use it to create a DBF?
It seems there are a numberr of different formats that XML data may in. This makes it dif... |
dbf to Xml | [quote="James Bott":7d3bf67y]However, your program does not actually create a DBF. Do you have an example of how to read the field information and use it to create a DBF?[/quote:7d3bf67y]
I haven't a sample at hand, sorry.
EMG |
dbf to array | What is the best way to fill an array from a dbf-file (a kind of recordset).
Thanks in advance
Otto |
dbf to array | I am using :
[code:32kgs9jn]
# include "Common.ch"
# DEFINE MAAKBLCK(cvar) &("{||"+cvar+"}")
# DEFINE MAAKINDBLCK(var,indexorde) var := &("{||"+INDEXKEY(indexorde)+"}")
******************************************************************... |
dbf to array | [code:hdnggqzm]FUNCTION MAIN()
LOCAL aArray := {}
LOCAL i
USE TEST
WHILE !EOF()
AADD( aArray, {} )
FOR i = 1 TO FCOUNT()
AADD( ATAIL( aArray ), FIELDGET( i ) )
NEXT
SKIP
... |
dbf to array | But if you really want a sort of recordset then you should create a class.
EMG |
dbf to csv | Hello,
i want to convert a DBF to CSV.
Is this possible?
I am using xbrowse, where I can convert the database to Excel at the moment.
Thank you for your answers,
Kind regard,
Iris |
dbf to csv | Hello Iris,
Welcome to these forums. Its a honor to have you here and to meet you again (this time virtually) <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) -->
It seems as Uwe from these forums has developed a tool that does what you need:
<!-- l --><a class="postlink-local... |
dbf to csv | [code=fw:7e4ujuxl]<div class="fw" id="{CB}" style="font-family: monospace;"> USE STATES<br /> COPY <span style="color: #0000ff;">TO</span> STATES.CSV DELIMITED<br /> </div>[/code:7e4ujuxl] |
dbf to csv | Dear Antonio and dear Mr. Rao,
thank you very much for your quick answers.
I really appreciate the forum, it helps me a lot.
Normally I am just a "reader" and I find the answers in existing topics.
Antonio, it would be great to meet you again in Sillian one time <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif"... |
dbf2sql de kleyber | amigos del foro
No se si alguien me pudiera proporcionar la ultima version de dbf2sql de kleyber porque los links ya no funcionan
Muchas gracias de antemano |
dbf2sql de kleyber | <!-- m --><a class="postlink" href="http://www.tkinformidia.net/crbst_7.html">http://www.tkinformidia.net/crbst_7.html</a><!-- m --> |
dbf2sql de kleyber | Ruben, aDutheil
Muchas gracias
Saludos |
dbfcdx.rdd | Hola a todos
tengo un archivo dbfcdx.rdd y quiero probarlo en harbour en reemplazo del driver nativo (dbfcdx)
Ahora bien, todos los drivers rdd vienen incluidos en una *.lib desde la que los usamos con el REQUEST DBFCDX y el RDDSETDEFAULT()
pero yo no tengo una *.lib, solo el dbfcdx.rdd !
es posible reemplazar el drive... |
dbfntx very slow with 2+ users | My applications that utilize DBFNTX run really fast with one user and really slow with 2 or more users logged in at the same time.
Has anyone experienced this?
Harbour 3.2.0
BCC 5.82
Fivewin version 13.02
Thanks in Advance.
don |
dbfntx very slow with 2+ users | Yes I do.
How many indexes do you have?.
Since when are you suffering this?. |
dbfntx very slow with 2+ users | Lucas,
It is quite normal that ntx is becoming slower if the number of users is increasing.
For each index, a ntx-file is created. If you open a DBF-file with its ntx-files, every file takes a file handle.
In my application, I open 38 different files with at least 7 indexes per file. This means (1 x 38) + (7 x 38) =... |
dbfntx very slow with 2+ users | Hello,
Thank you very much. Yes, I switched to DBFCDX many years ago.
Now I use CDX with various Tags and only one .cdx file per dbf, but in Network, with 3 or more users it is quite slow.
We are now moving to ADO and the problem has gone away <!-- s;) --><img src="{SMILIES_PATH}/icon_wink.gif" alt=";)" title="Wink"... |
dbfntx very slow with 2+ users | Lucas,
search for SMB on the forum.
What OS do you use.
Best regards,
Otto |
dbfntx very slow with 2+ users | Otto,
Windows XP and Windows 7 mostly.
I do not use mapped drives, just \\server\folder, so I taought SMB was not the cause:
<!-- l --><a class="postlink-local" href="http://forums.fivetechsupport.com/viewtopic.php?f=3&t=21740&p=115743&hilit=smb#p115743">viewtopic.php?f=3&t=21740&p=115743&hilit=smb#p115743</a><!-- l ... |
dbfntx very slow with 2+ users | Hello,
xHarbour created this function, later adopted by Harbour, that disables SMB 2.0.
I tried some time ago with Little Luck.
Here it is. It may help you:
[code=fw:1zeas53m]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><span style="color: #00D7D7;">#include</span> <span style="color: #ff0000;">"... |
dbfntx very slow with 2+ users | I have a Harbour / Fivewin application that uses MSSQL tables via Mediator (3rd party RDD from OTS software).
Does ADO provide MSSQL and MySQL seamlessly using harbour RDD database "regular" commands, like USE, SKIP, SEEK, DELETE, PACK, COPY, etc. and regular function calls like dbskip, dbdelete, dbpack, dbappend, etc... |
dbfntx very slow with 2+ users | Don,
ADO does not work like a RDD, please take a look at samples\adoxbr01.prg.
I did not get Mediator working not a reply from OTC, so that´s why I choose SQLRDD, but it did not work as expected.
Your problem happens with DBF stand alone or with Mediator?. |
dbfntx very slow with 2+ users | That's an odd topic.
for reading files either individually or especially en masse Mediator is faster than DBF, especially with 2+ users.
If I use sql commands like SELECT * etc, Mediator is very fast.
the coding is 99% harbour compatiable using conventional programming syntax.
i've had good luck with Mediator for ab... |
dbfntx very slow with 2+ users | Don
[quote:145f9q6b]
I was just wondering if it might be time to investigate other routes to MSSQL.
[/quote:145f9q6b]
The short answer to your statement above is YES! .. I started using ADO ( sqloledb, or Ms Jet ) many years ago and I never looked back. With recent versions of FiveWin they have created a set of FW_Ad... |
dbfntx very slow with 2+ users | I am also experiencing the same issue.
There are 2 PC's ie [b:x1wamsug]PC1[/b:x1wamsug] and [b:x1wamsug]PC2[/b:x1wamsug].
The application and data reside on PC1. For eg on D Drive ie D:\MyApp
The operating system used on both the PC's are Windows 10
The problem occurs ONLY when the second user uses the Application ... |
dbfntx very slow with 2+ users | Perhaps <!-- m --><a class="postlink" href="https://groups.google.com/g/comp.lang.xharbour/c/DPt-VaADDdw">https://groups.google.com/g/comp.lang.x ... Pt-VaADDdw</a><!-- m --> |
dbfntx very slow with 2+ users | hi,
i saw Comments about SMB ...
many of these Comment are "outdate", while for SMB1, and not valid when using Windows 10 / 11
Note : it is NOT recommend to use "older" OS than Windows 10 any more
only some older NAS will still use SMB1. change your NAS <!-- s:!: --><img src="{SMILIES_PATH}/icon_exclaim.gif" alt=":... |
dbfntx very slow with 2+ users | [quote="Jimmy":lfz0hj2g]i saw Comments about SMB ...
many of these Comment are "outdate", while for SMB1, and not valid when using Windows 10 / 11
Note : it is NOT recommended to use "older" OS than Windows 10 any more[/quote:lfz0hj2g]
True
[quote="Jimmy":lfz0hj2g]are you using "Drive-Letter" or UNC-Path <!-- s:?: -... |
dbfntx very slow with 2+ users | [quote="don lowenstein"]I have a Harbour / Fivewin application that uses MSSQL tables via Mediator (3rd party RDD from OTS software).
Don,
where can I found a trial version or pricing of Mediator? |
dbfntx very slow with 2+ users | I found in this url
[url:1mkqshes]http://www.otc.pl/download/default.aspx?l=2[/url:1mkqshes]
but virustotal says is not safe
<!-- s:?: --><img src="{SMILIES_PATH}/icon_question.gif" alt=":?:" title="Question" /><!-- s:?: --> |
dbfntx very slow with 2+ users | If any of you are using filters this will be incredibly slow over a network. You need to use scopes instead.
Also, as someone else mentioned, you need to open only the databases needed for the routine, then close them when done. |
dbfntx very slow with 2+ users | Hello James,
Thank you.
If there is no stored index, what is the best way to create one that you can use scope.
Best regards,
Otto |
dbfntx very slow with 2+ users | Otto,
[quote:2drlw2pk]If there is no stored index, what is the best way to create one that you can use scope.[/quote:2drlw2pk]
Well, creating an index and using a filter (once) will take about the same amount of time because you have to read the entire database either way. Actually, when creating an index you have to... |
dbfntx very slow with 2+ users | Gentleman ... you all may be overlooking your network infrastructure .. especially if you are doing peer to peer. Check your router and switches .. if they are old .. replace them .. I noticed a BIG improvement in our peer to peer application when we upgraded our ISP router with a dual band 2g\5g ( with built in wire... |
dbfntx very slow with 2+ users | in my workplace I use two different pc
my personal dell vostro 16 GB i7 SDD and a fujitsu i5 8 GB and HD
microsoft windows server virtalualized (vmware)
If I perform lanspeedtest.exe the speed is very fast and similar
But if I work with my program in dell is very very fast while in fujitsu the speed some operations... |
dbfntx very slow with 2+ users | Marco,
SSD is the point for DBF speed.
Why don't you use RDP?
This way you have a local system.
Best regards,
Otto |
dbfntx very slow with 2+ users | hi,
if you need more than 3 Second, even over Network, it is "too long"
SET FILTER is slow when not use SCOPE before ... it is like SQL without LIMIT
---
SCOPE need Index and SCOPETOP / SCOPEBOTTOM begin on left Side
if you have a FILTER to search "in String" like
[code=fw:140p5v75]<div class="fw" id="{CB}" style=... |
dbfntx very slow with 2+ users | Otto,
my local volume C: is SSD
but dbf tables are in a server volume |
dbfntx very slow with 2+ users | Hallo Marco,
Is your program a hobby application or is it in for professional use?
If it is for professional use, then I suggest you buy a SSD for your server and then run your program remotely.
Then you will have a professional system. How many users do you have?
File sharing and the fact that your data is also on ... |
dbfntx very slow with 2+ users | Dear Otto
>Is your program a hobby application or is it in for professional use?
professional use
> If it is for professional use, then I suggest you buy a SSD for your server and then run your program remotely.
soon we will change the server my program run on a mapped volume
> Then you will have a professional syst... |
dbfntx very slow with 2+ users | Marco, you can use your program as it is, just remotely.
So many problems disappear with it.
No installation on the client PCs.
Data backup in one central place.
No mapped drives.
Client can be a smartphone, a tablet, a Mac or AndroidPC or all Windows versions.
Plan a weekend in the Dolomites and I will show you how we... |
dbfntx very slow with 2+ users | [quote="Otto":165e07xx]Marco, you can use your program as it is, just remotely.
So many problems disappear with it.
No installation on the client PCs.
Data backup in one central place.
No mapped drives.
Client can be a smartphone, a tablet, a Mac or AndroidPC or all Windows versions.
Plan a weekend in the Dolomites and... |
dbfntx very slow with 2+ users | Hello Marc,
I can offer you the same as Marco.
Spend a weekend in Tirol and I show you our system and my mod harbour programs.
Best regards,
Otto |
dbfntx very slow with 2+ users | hi Marc,
did you know LetoDb or NetIO for harbour <!-- s:idea: --><img src="{SMILIES_PATH}/icon_idea.gif" alt=":idea:" title="Idea" /><!-- s:idea: -->
it is still using DBF but it work over TCP/IP as Client/Server
so you get no SMB Problem and have no direct File Access. |
dbfntx very slow with 2+ users | Jimmy,
>> did you know LetoDb or NetIO for harbour <!-- s:idea: --><img src="{SMILIES_PATH}/icon_idea.gif" alt=":idea:" title="Idea" /><!-- s:idea: -->
Where can I download some documentation? |
dbfntx very slow with 2+ users | Dear Otto,
thank for you invitation <!-- s8) --><img src="{SMILIES_PATH}/icon_cool.gif" alt="8)" title="Cool" /><!-- s8) --> |
dbfntx very slow with 2+ users | [quote="Jimmy":73ba451g]hi Marc,
did you know LetoDb or NetIO for harbour <!-- s:idea: --><img src="{SMILIES_PATH}/icon_idea.gif" alt=":idea:" title="Idea" /><!-- s:idea: -->
it is still using DBF but it work over TCP/IP as Client/Server
so you get no SMB Problem and have no direct File Access.[/quote:73ba451g]
No... |
dbfntx very slow with 2+ users | Marco,
I have used many systems also LetoDb.
These are all just workarounds.
There is a request to the server and then the data is transferred to the client.
It is different with RDP. Only the changed pixels of the screen are transferred.
You, and especially if you are a small company, should use RDP.
All your ... |
dbfntx very slow with 2+ users | hi Marc,
[quote="Marc Venken":3cwv11ip]
I also have no idea about the SMB problem (no idea what SMB is (look into it)
[/quote:3cwv11ip]
read here about Opportunistic locks (oplocks)
[url:3cwv11ip]https://docs.microsoft.com/en-US/windows/win32/fileio/opportunistic-locks[/url:3cwv11ip]
this Paper is about :... |
dbfntx very slow with 2+ users | hi Marco,
[quote="MarcoBoschi":3ia79sa3]Where can I download some documentation?[/quote:3ia79sa3]
LetoDB [url:3ia79sa3]https://www.kresin.ru/en/letodb.html[/url:3ia79sa3]
NetIO is Part of harbour Constribution
[url:3ia79sa3]https://github.com/harbour/core/blob/master/contrib/hbnetio/utils/hbn... |
dbfntx very slow with 2+ users | Otto,
when you say
> You, and especially if you are a small company, should use RDP.
> All your problems will disappear with it.
but license for 1 user costs about 150 euros
And the server the server must be sized appropriately I don't remember how much ram each user ...
In my opinion in a local area network if it... |
dbfntx very slow with 2+ users | Marco,
>but license for 1 user costs about 150 euros
That's why I asked you if it was a[b:yjfeu9uh] hobby application or for professional use[/b:yjfeu9uh].
I am posting some screens here.
Please note that FIVEWIN programs need very little memory.
Outlook is the biggest consumer here.
But you don't have to use Out... |
dbfntx very slow with 2+ users | Hello friends,
I add 2 more photos to my post.
On the screenshot you can see the memory consumption of the [b:wtwzdc4v]APACHE server with mod harbour[/b:wtwzdc4v].
And then quite interesting the hardware.
Above is the SERVERBOOK we put in operation in [b:wtwzdc4v]2013[/b:wtwzdc4v] and it was in use [b:wtwzdc4v]24 hour... |
dbfntx very slow with 2+ users | Otto,
Please provide a link to "Serverbook", a web search for "serverbook" only turns up a paper notebook.
James |
dbfntx very slow with 2+ users | Hello James,
Glad you like the idea. SERVERBOOK is our trademark.
We use HP PRO book as hardware for years.
Meanwhile, we have some Powershell scripts to do then all settings software based.
Now also including mod harbour and APACHE.
Best regards,
Otto
PS: By the way, the website was created by Ruth with mod harbour. ... |
dbfs on Network : wich performance method? | Dear friends,
I wish to ask what is the best way to manage archives in a network for an application I need to create.
Until now I have limited myself to open the archives in an exclusive way because I have left the problem of the network.
I have made applications up until now that were needed for me or my friends f... |
dbfs on Network : wich performance method? | Silvio,
Here is an example. This is fully network compatible. Open a file object with one line of code. Databases are open in shared mode, buffered, optimistic locking, no dealing with aliases workareas, etc.
Use this with the customer.dbf file you recently sent me and/or change it slightly to work with any databa... |
dbfs on Network : wich performance method? | James ,
many years ago I already used the class Tdatabase, in 1999/2001 I made an application where I found different difficulties,
I used a main window and many child windows in each of which I inserted a dbf with a listbox.
I often encountered the error "alias do not exist" and no one even helped me because at that... |
dbfs on Network : wich performance method? | Silvio,
[quote:3o406phb]1) Tdatabase of fwh run ok or have problems ? or I must use another tdatabase on commerce..[/quote:3o406phb]
TDatabase has been working fine all along. Perhaps you were making programming errors.
[quote:3o406phb]2) Seeing your source I saw you create at init the index of archives when the app... |
dbfs on Network : wich performance method? | Good
I must make a mother class txdata and then I can make the other classes for customer, articles, ecc.
in these days I have to try to do something with the teachings you gave me
perhap At first, I can converte a my easy prg with these methods |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.