- Rexx 教程
- Rexx-主页
- Rexx-概述
- Rexx-环境
- Rexx-安装
- Rexx-插件安装
- Rexx-基本语法
- Rexx-数据类型
- Rexx-变量
- Rexx-操作符
- Rexx-数组
- Rexx-循环
- Rexx-决策制定
- Rexx-数字
- Rexx-字符串
- Rexx-函数
- Rexx-栈
- Rexx-文件 I/O
- Rexx-文件的函数
- Rexx-子程序
- Rexx-内置函数
- Rexx-系统命令
- Rexx-XML
- Rexx-Regina
- Rexx-解析
- Rexx-信号
- Rexx-调试
- Rexx-错误处理
- Rexx-面向对象
- Rexx-可移植性
- Rexx-扩展函数
- Rexx-指令
- Rexx-实现
- Rexx-Netrexx
- Rexx-Brexx
- Rexx-数据库
- 手持和嵌入式
- Rexx-性能
- Rexx-最佳编程实践
- Rexx-图形用户界面
- Rexx-Reginald
- Rexx-网络编程
Rexx-读取操作
对任何数据库执行读取操作是指从数据库中获取一些有用的信息。一旦我们的数据库连接建立,就可以对该数据库进行查询。
以下示例显示如何从 employee 表中获取所有记录。
示例
/* Main program */ Call RxFuncAdd 'SQLLoadFuncs', 'rexxsql', 'SQLLoadFuncs' Call SQLLoadFuncs if SQLConnect(c1,'testuser','test123','testdb') == 0 then say 'Connect Succedded' if SQLCommand(u1,"use testdb") == 0 then say 'Changed database to testdb' sqlstr = "select first_name,last_name,age,sex,income from employee" say SQLCommand(c2,sqlstr) say c2.first_name.1 say c2.last_name.1 say c2.age.1 say c2.sex.1 say c2.income.1
上面程序的输出如下图所示。
Connect Succedded Changed database to testdb 0 Mac MOhan 20 M 2000
rexx_databases.htm
广告