MPSystemsServices / CodeBase-for-DBF

CodeBase is a C-based library to read, write and manage DBF type tables and indexes.
GNU Lesser General Public License v3.0
51 stars 33 forks source link

CodeBase error -120 #9

Open addsuminc opened 4 years ago

addsuminc commented 4 years ago

I'm wondering whether anyone else has had a user experience this error:

CODEBASE ERROR Error#: -120 Error #: 90619 Writing to File file4write (followed by the UNC data file path to a small but commonly used DBF file in this system)

The documentation indicates that a -120 indicates that the "disk" is full. Yet that was not the case; the user had plenty of free space. I'm not finding any reference to the suberror 90619 either in the documentation nor in the source code. This user has been experiencing other types of more or less random error messages (-20, -70's, etc.) as well. Running on a wired network, all new/newish Windows 10 PC's, workgroup configuration, with usually just three or so active users. One of the users does actively use the same PC where the software is installed. Their IT support is suspecting some connectivity issues with IPv6 and plans to disable it. Anti-virus scanning could be part of the issue and we have recommended exclusions. No backup is happening while the system is in use, although they are doing some kind of Google Drive synch.

Thanks!

Tony Frates Addsum Business Software, Inc.

mschifter commented 4 years ago

According to f4write.c, line 103, the error 90619 is a “position failure”. In f4file.c, line 453, the same error occurs. Here is the context:

           error4( c4, e4info, E90619 ) ;

           file4longAssignError( writeArrayPosition ) ;

Hope this helps,

Matt

From: addsuminc notifications@github.com Sent: Friday, June 19, 2020 4:00 PM To: MPSystemsServices/CodeBase-for-DBF CodeBase-for-DBF@noreply.github.com Cc: Subscribed subscribed@noreply.github.com Subject: [MPSystemsServices/CodeBase-for-DBF] CodeBase error -120 (#9)

I'm wondering whether anyone else has had a user experience this error:

CODEBASE ERROR Error#: -120 Error #: 90619 Writing to File file4write (followed by the UNC data file path to a small but commonly used DBF file in this system)

The documentation indicates that a -120 indicates that the "disk" is full. Yet that was not the case; the user had plenty of free space. I'm not finding any reference to the suberror 90619 either in the documentation nor in the source code. This user has been experiencing other types of more or less random error messages (-20, -70's, etc.) as well. Running on a wired network, all new/newish Windows 10 PC's, workgroup configuration, with usually just three or so active users. One of the users does actively use the same PC where the software is installed. Their IT support is suspecting some connectivity issues with IPv6 and plans to disable it. Anti-virus scanning could be part of the issue and we have recommended exclusions. No backup is happening while the system is in use, although they are doing some kind of Google Drive synch.

Thanks!

Tony Frates Addsum Business Software, Inc.

— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub https://github.com/MPSystemsServices/CodeBase-for-DBF/issues/9 , or unsubscribe https://github.com/notifications/unsubscribe-auth/AJOKIJFQYM7TYXIUM366REDRXO7VXANCNFSM4ODABQRA .

addsuminc commented 4 years ago

Thank you.