Proc 预编译:
Linux 环境下 PRO*C 程序的编写简单范例
Oracle 数据库版本 11GR2
Linux 版本 Red Hat Enterprise AS6
环境介绍:oracle 数据库和服务均安装到 linux 主机上
一:功能:pro*c 这门语言就是 orale 提供的,文件后缀为 .pc ,proc 命令就是把.prc 文件翻
译成.c 文件,然后再来编译成可执行文件。
二:在进行 proc 编译时,要准备如下环境:
1:oracle 用户的环境变量设置如下(红色为最重要的)
1:在$HOME 下 ls –al 查找到.bash_profile
#vim .bash_profile
# .bash_profile
# Get the aliases and functions
if [ -f ~/.bashrc ]; then
. ~/.bashrc
fi
# User specific environment and startup programs
PATH=$PATH:$HOME/bin:$ORACLE_HOME/bin;
export PATH
# Oracle Settings
export TMP=/tmp;
export TMPDIR=$TMP;
export ORACLE_HOSTNAME=localhost.localdomain;
export ORACLE_BASE=/u01/app/oracle;
export ORACLE_HOME=$ORACLE_BASE/product/11.2.0/dbhome_1;
评论3
最新资源