FoxPro 2.6 and updating UW


 
Thread Tools Search this Thread
Operating Systems SCO FoxPro 2.6 and updating UW
# 1  
Old 08-01-2013
FoxPro 2.6 and updating UW

I have an app in FP26 with 400 prgs currently en UW7.1.1 thats work perfectly.

I have a new server and install UW7.1.4 and FP26. Then I had copy my App to new server. But the next command doesn't work:

use database
@10,10 get name
read

I can't write in the get.

*****************************
The next two works
**************************
use database exclusive
@10,10 get name
read
**************************
use database
cname = name
@10,10 get cname
read
**************************

Yes! I can modify all my gets, but are 100s of instructions.

Are there any difference in locks in UW7.1.1?
# 2  
Old 08-01-2013
It appears as if your databases are read only. The permissions should be 0666. Foxpro is pretty much a straight re-compilation of the DOS version, and does not understand the nuances of Unix permissions.
# 3  
Old 08-02-2013
Quote:
Originally Posted by jgt
It appears as if your databases are read only.
Nop!, I can edit,browse,append,replace, but can not edit with GET...READ
# 4  
Old 08-02-2013
How did you install foxpro on the new server? were you able to install if from the original media, or did you copy it from the old system?
I can tell you that this anomaly does not occur with SCO Openserver 6.0.0
# 5  
Old 08-02-2013
Well!
I had instaled foxpro with a copy from old server, the new one haven't diskette
Do you think this can be the problem?
# 6  
Old 08-02-2013
I don't have much to do with UW, but the Foxpro diskettes for Openserver have not worked since SCO changed the custom format with release 5.0.5.
I tar'd /usr/bin/foxpro and /usr/lib/foxpro (absolute file names), then just extract the tar file on any new machine.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Ubuntu

16.04 not updating

Just installed the latest version on my hp stream, was tired of windows. Of the few times I've used Linux, this is the first time it won't update. Im connected to the net the updater recognizes that the OS needs 21 updates. But it won't download/install the updates. It also won't load the... (1 Reply)
Discussion started by: DabblingMadman
1 Replies

2. Shell Programming and Scripting

Updating variable

Hi, I have been attempting to install source code from xcrysden with little to no luck. I have attempted to follow the instructions given on the site but made the mistake on the code I downloaded. This was pointed out to my by the developer and I have since downloaded the proper code. However... (4 Replies)
Discussion started by: Zbay
4 Replies

3. Shell Programming and Scripting

Need help for updating the folder

Hello Expert, is there any command through which i can update/replace the folder after every two months. lets say i have folder /usr/local/x_folder created on 01/01/2011 I need to update it on 31/03/2011 Please help me to get the logic :confused: Thanks (3 Replies)
Discussion started by: aks_1902
3 Replies

4. AIX

Updating AIX OS

Hello I have a server whose os level reads 5300-01-00-0000. It has to be upgraded to the latest level which is 5300-12-04-1119. What would I need to do go get the server to this point? Would I need to go through each patch level until I get it to current? If so, would anyone happen to know... (1 Reply)
Discussion started by: stayfuzzy
1 Replies

5. Shell Programming and Scripting

updating LD_LIBRARY_PATH

Inside my csh script, I have the following command: source ${HOME}/.login When I execute my csh script, why do I get the following error message: /cygdrive/c/WINDOWS/system32/export: Permission denied This is what I have inside my .login #!/bin/bash export... (9 Replies)
Discussion started by: casau
9 Replies

6. Shell Programming and Scripting

Updating with SQLPLUS

I am using the following code to update a table of mine. The problem is that the long string created to tempfile5 gives me the SP2-0027 error in Oracle. Is there any way to break up my string and still preserve the integrity? echo `awk -F "|" '{x=x","$1} END{print substr(x,2)}' $tempfile2` >... (1 Reply)
Discussion started by: k1ko
1 Replies

7. SCO

Help to install foxpro 2.5 on openserver 6.0.0.

Can anyone help me to install foxpro 2.5 for unix openserver 6.0.0. I recently updtae my server from 5.0.7 to 6.0.0. to get an usb tape working, but can't install or run foxpro 2.5, all the programs run on it, need help. thanks or if anyone had a version tested of foxpro on openserver 6.0.0.... (3 Replies)
Discussion started by: jactroo
3 Replies

8. Shell Programming and Scripting

awk updating one file with another, comparing, updating

Hello, I read and search through this wonderful forum and tried different approaches but it seems I lack some knowledge and neurones ^^ Here is what I'm trying to achieve : file1: test filea 3495; test fileb 4578; test filec 7689; test filey 9978; test filez 12300; file2: test filea... (11 Replies)
Discussion started by: mecano
11 Replies

9. SCO

foxpro & sco 6.0

My problem is the following: I have installed Foxpro 2.6 for Unix, in HPCOMPAQ ML350 G5 with SCO 6.0, and when the application is executed in FoxPro, the following message appears: "file is in use" , but there is nobody else working. (1 Reply)
Discussion started by: Medardo Arcaya
1 Replies

10. Shell Programming and Scripting

TO know whether file is updating or not

Hi All, I am new to scripting. my requirement is , I want to know whether the file(i.e., log file) is updating or not. It should search for every 15 min. If it is not updating means it needs to send out a automatic mail. can you please help me in this. (2 Replies)
Discussion started by: raj333
2 Replies
Login or Register to Ask a Question