[U2] mvBASE to Unidata via virtual tape file

2005-06-16 Thread CDMI
Anyone had experience with moving from mvBASE to Unidata via the VTF (virtual tape file) backup method provided by mvBASE ? FYI: the vtf is basically a tape file written to disk. mvBASE uses the same 'file-save', 'account-save', 't-dump' commands to tape as well as to VTFs. Thanks in advance,

RE: [U2] Basic program editor for Windows

2005-02-14 Thread CDMI
My vote would be for AccuTerm. It's totally integrated with mv databases. Works on most if not all flavors. Can out online or offline. Works with SSH, Telnet, Serial, Modem, etc. Can transfer files to and from DOS. Includes BASIC keywords for highlighting. Allows you to add your own keywords,

RE: [U2] GE and LE question

2005-02-11 Thread CDMI
Brenda: Put: SEL = OCONV(SEL,MCN) This ensures SEL is numeric. --Steve T -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Pingilley, Ron Sent: Friday, February 11, 2005 9:43 AM To: u2-users@listserver.u2ug.org Subject: RE: [U2] GE and LE question

RE: [U2] Universe to Web interface

2005-02-08 Thread CDMI
Will - if you're interested in an HTTP 1.1 real time web server - check out: http://coyote.modsoft.com/ I use this with several mv databases. It's great. It resides with the database. It is a PICK web server. One thing I really like is it's sold based on bandwidth requirements and it does NOT take

RE: [U2] How to exit out mulitple loops?

2005-01-10 Thread CDMI
This works regardless of OS you're on: FOR T=1 TO 10 FOR Q=1 TO 6 FOR X=1 TO 9 IF CONDITION THEN X=9 ELSE IF CONDITION THEN X = 9 ; Q = 1 END END NEXT X NEXT Q NEXT T Steve Trimble Computerized Data Management, Inc. PO Box

RE: [U2] How to exit out mulitple loops?

2005-01-10 Thread CDMI
] Behalf Of CDMI Sent: Monday, January 10, 2005 1:22 PM To: u2-users@listserver.u2ug.org Subject: RE: [U2] How to exit out mulitple loops? This works regardless of OS you're on: FOR T=1 TO 10 FOR Q=1 TO 6 FOR X=1 TO 9 IF CONDITION THEN X=9 ELSE IF CONDITION THEN X = 9 ; Q = 1 END

RE: [U2] PICK Assembler Language

2004-11-11 Thread CDMI
here's the .? from an mvBASE system: .? .L LIST COMMANDS .Ln,m will list n stored TCL commands starting with line m. .E EDIT STORED COMMANDS .En brings the stored commands into the system editor at line n. .X EXECUTE COMMAND(S) .Xn,n,n will execute the numbered

RE: [U2] UniVerse to Linux mySQL

2004-11-05 Thread CDMI
you might take a look at: http://coyote.modsoft.com/over-coyote.htm this is a full HTTP/1.1 web server running real time in PICK. very fast. perfect for any 'form' web application. no reason to port / move data. let the web app look real time. they also have a RPC scenario if you want to

RE: [U2] UniVerse to Linux mySQL

2004-11-05 Thread CDMI
the Coyote web server http://coyote.modsoft.com/ lets you write PICK/BASIC with HTML presentation. quite fast and fairly easy to implement. there are 2 ways to write an htm app. One way is to use the developer referred to as: PLZ the other is to write pick/basic code right in your htm item like

RE: [U2] READU ... THEN _or_ ELSE but not both?

2004-10-29 Thread CDMI
Wendy - here's a snippet: DONELOK = 0 LOOP UNTIL DONELOK = 1 DO READU LOKREC FROM CUSTOMERFILE,CUSTID LOCKED CRT TIMEDATE():\ port \:SYSTEM(18):\ file CUSTOMER item \:CUSTID:\locked!\ ; SLEEP 1 END THEN DONELOK = 1 ELSE LOKREC = '' ; DONELOK = 1 REPEAT notice the LOCKED END THEN ELSE