| 1.How to use of INPUT$ command in console platform? |
This command applies to GoDB Console Version Only. INPUT$ command allows to read a string from the Console.
Following type of Input$ statement are only for console platform
a$=INPUT$()
print a$
a$=INPUT$(1)
print a$
a$=INPUT$(1,"EnterAge:")
print a$
a$=INPUT$(2,"Password:")
print a$
But in visiontek terminal "LIN" platform will allow the bellow type of input statement only
a$=INPUT$(0,"Enter Name:")
print a$
a$=INPUT$(2,"Password:")
print a$
a$=INPUT$(1,"EnterAge:")
print a$
a$=INPUT$(2,"Password:")
print a$
Note:
In visiontek terminal they cannot support the word "PIN" inside the Input$ statement.
|
| Top |
| 2.How to Receive the bdb and bdb.db files from the visiontek terminal? |
After connecting to the Visiontek terminal through Hyper Terminal
Kindly follow the below five steps to receive the filename.bdb or filename.bdb.db file from the jffs2 directory
Step1: Goto the jffs2 directory as like below
Welcome to H720X ARM Linux(Hynix Semiconductor, Inc.)
(none) login: root
bash-2.04# su
bash-2.04# cd /mnt/jffs2/
bash-2.04#
Step2: Check and list out the files in that particular directory
bash-2.04# ls -l
total 889
-r-xr-Sr-t 1 root root 646588 Jan 1 00:00 GoDB
-rw-r--r-- 1 root root 258048 Jan 1 00:07 MyConn.bdb
-rw-r--r-- 1 root root 5120 Dec 31 23:59 MyConn.bdb.db
-rw-r--r-- 1 root root 0 Jan 1 00:00 download.txt
-rw-r--r-- 1 root root 301 Jan 1 00:00 http.log
bash-2.04#
Step3: Enter the below command in bash-2.04# prompt as like below and press enter
bash-2.04# /home/devkermit -s MyConn.bdb
Step4: Click Receive File from the Transfer menu from the Hyper Terminal. It will show you the dialoge box.
Step5: Now choose Receiving Protocol as Kermit and then map the location to place this particular filename.bdb or filename.bdb.db file through the Browse button in that dialog then click ok button.
Now the filename.bdb or filename.bdb.db file will received from the visiontek to your system.
Note:
Here the Received file will be saved into a particular location by capital letter format only.
|
| Top |
| 3.How to Transfer the GoDB (bdb or bdb.db) file into a visiontek terminal? |
After connecting to the Visiontek terminal through Hyper Terminal
Kindly follow the below five steps to transfer the filename.bdb or filename.bdb.db file in to jffs2 directory
Step1: Kindly move to the jffs2 directory
Welcome to H720X ARM Linux(Hynix Semiconductor, Inc.)
(none) login: root
bash-2.04# su
bash-2.04# cd /mnt/jffs2/
bash-2.04#
Step2: Enter the below command in bash-2.04# prompt as like below and press enter
bash-2.04# /home/devkermit -r
Step3: Click Send File from the Transfer menu from the Hyper Terminal. It will show you the dialoge box.
Step4: Now choose Protocol as Kermit and then map the particular filename.bdb or filename.bdb.db file through the Browse button in that dialog then click ok button.
Step5: Now the filename.bdb or filename.bdb.db file will transfered from the system to your visiontek.
|
| Top |