delphi中oracle语句的引号问题,搞不懂

gnolk 2016-04-12 09:31:10
最近研究delphi写oracle的程序,遇到这个 不会弄:
user:=edit1.Text;
pass:=edit2.Text;
adoquery1.SQL.Text:='select gh from QDN_LKS_ZY_GH A where A.gh=''||user||'' and A.mm=''||pass||''';



这里是哪里不对?
数据库的语句是:select gh from QDN_LKS_ZY_GH a where a.gh=‘111’ and a.mm='222'
...全文
106 4 打赏 收藏 转发到动态 举报
写回复
用AI写文章
4 条回复
切换为时间正序
请发表友善的回复…
发表回复
jjpweb 2016-04-14
  • 打赏
  • 举报
回复
字符串串接用+号,字符串里面两个单引号转化为一个单引号。
zbdzjx 2016-04-12
  • 打赏
  • 举报
回复
adoquery1.SQL.Text:='select gh from QDN_LKS_ZY_GH A where A.gh=''‘+user+’'' and A.mm=''‘+pass+’''';
doloopcn 2016-04-12
  • 打赏
  • 举报
回复
user:=QuotedStr(edit1.Text); pass:=QuotedStr(edit2.Text); adoquery1.SQL.Text:='select gh from QDN_LKS_ZY_GH A where A.gh='+user+' and A.mm='+pass;
suetrain 2016-04-12
  • 打赏
  • 举报
回复
1,字符串连接用+号 2,字符串中的两个''执行时会编译成一个' adoquery1.SQL.Text:='select gh from QDN_LKS_ZY_GH A where A.gh='''+user+''' and A.mm='''+pass+'''';
SQL语法大全 SQL语法大全 1. ASP与Access数据库连接: 2. ASP与SQL数据库连接: 建立记录集对象: set rs=server.createobject("adodb.recordset") rs.open SQL语句,conn,3,2 3. SQL常用命令使用方法: (1) 数据记录筛选: sql="select * from 数据表 where 字段名=字段值 order by 字段名 [desc]" sql="select * from 数据表 where 字段名 like \'%字段值%\' order by 字段名 [desc]" sql="select top 10 * from 数据表 where 字段名 order by 字段名 [desc]" sql="select * from 数据表 where 字段名 in (\'值1\',\'值2\',\'值3\')" sql="select * from 数据表 where 字段名 between 值1 and 值2" (2) 更新数据记录: sql="update 数据表 set 字段名=字段值 where 条件表达式" sql="update 数据表 set 字段1=值1,字段2=值2 …… 字段n=值n where 条件表达式" (3) 删除数据记录: sql="delete from 数据表 where 条件表达式" sql="delete from 数据表" (将数据表所有记录删除) (4) 添加数据记录: sql="insert into 数据表 (字段1,字段2,字段3 …) values (值1,值2,值3 …)" sql="insert into 目标数据表 select * from 源数据表" (把源数据表的记录添加到目标数据表) (5) 数据记录统计函数: AVG(字段名) 得出一个表格栏平均值 COUNT(*|字段名) 对数据行数的统计或对某一栏有值的数据行数统计 MAX(字段名) 取得一个表格栏最大的值 MIN(字段名) 取得一个表格栏最小的值 SUM(字段名) 把数据栏的值相加 引用以上函数的方法: sql="select sum(字段名) as 别名 from 数据表 where 条件表达式" set rs=conn.excute(sql) 用 rs("别名") 获取统的计值,其它函数运用同上。 (5) 数据表的建立和删除: CREATE TABLE 数据表名称(字段1 类型1(长度),字段2 类型2(长度) …… ) 例:CREATE TABLE tab01(name varchar(50),datetime default now()) DROP TABLE 数据表名称 (永久性删除一个数据表) 4. 记录集对象的方法: rs.movenext 将记录指针从当前的位置向下移一行 rs.moveprevious 将记录指针从当前的位置向上移一行 rs.movefirst 将记录指针移到数据表第一行 rs.movelast 将记录指针移到数据表最后一行 rs.absoluteposition=N 将记录指针移到数据表第N行 rs.absolutepage=N 将记录指针移到第N页的第一行 rs.pagesize=N 设置每页为N条记录 rs.pagecount 根据 pagesize 的设置返回总页数 rs.recordcount 返回记录总数 rs.bof

2,497

社区成员

发帖
与我相关
我的任务
社区描述
Delphi 数据库相关
社区管理员
  • 数据库相关社区
加入社区
  • 近7日
  • 近30日
  • 至今
社区公告
暂无公告

试试用AI创作助手写篇文章吧