早教吧作业答案频道 -->其他-->
IfText2.Text=Text3.TextThenSetadoRs=adoCon.Execute(“insertintoTableuservalues(“&Text6&”,“&Text1&”,“&Text2&”,“&Check1&”,“&Check2&”)”)MsgBox“注册成功!”,48,“用户管理系统”Text1.Text=""Text2.
题目详情
If Text2.Text=Text3.Text Then
Set adoRs=adoCon.Execute(“insert into Table_user values(“& Text6 &”,“& Text1 &”,
“& Text2 &”,“& Check1 &”,“& Check2 &”)”)
MsgBox“注册成功!”,48,“用户管理系统”
Text1.Text = ""
Text2.Text = ""
Text3.Text = ""
Frm_YHGL.Hide
这是实现插入功能的,&是取地址,“& Check1
Call main
Adodc1.RecordSource=”select * from Table_user”
Adodc1.Refresh
If Adodc1.Recordset.RecordCount>0 Then
Adodc1.Recordset.MoveLast
Text6.Text=Val(Adodc1.Recordset.Fields(“ID”))+1 还要这句不懂
Else
Text6.Text=1 ,
Set adoRs=adoCon.Execute(“insert into Table_user values(“& Text6 &”,“& Text1 &”,
“& Text2 &”,“& Check1 &”,“& Check2 &”)”)
MsgBox“注册成功!”,48,“用户管理系统”
Text1.Text = ""
Text2.Text = ""
Text3.Text = ""
Frm_YHGL.Hide
这是实现插入功能的,&是取地址,“& Check1
Call main
Adodc1.RecordSource=”select * from Table_user”
Adodc1.Refresh
If Adodc1.Recordset.RecordCount>0 Then
Adodc1.Recordset.MoveLast
Text6.Text=Val(Adodc1.Recordset.Fields(“ID”))+1 还要这句不懂
Else
Text6.Text=1 ,
▼优质解答
答案和解析
Execute(“insert into Table_user values(“& Text6 &”,“& Text1 &”,
“& Text2 &”,“& Check1 &”,“& Check2 &”)”)
你得分开来看,并不是你看到的"& Check1 &” ,正确的应该是"," | & Check1 & | "," .
其中“&”并不是取地址,而是字符串连接符,是字符“,” 与 Check1 与 “,” 三个字符串的连接!仔细看看SQL语组成结构吧.
If Adodc1.Recordset.RecordCount>0 Then :这句是判断当前数据库中记录总数
Adodc1.Recordset.MoveLast ':这句是将当前游标移动到最后一条记录
Text6.Text=Val(Adodc1.Recordset.Fields(“ID”))+1 还要这句不懂:这句是将最后一条记录的ID值加1后放到Text6中
Else
Text6.Text=1 ,这句是前面的判断条件不成立(即数据库当前无记录)时给Text6赋值"1” .
“& Text2 &”,“& Check1 &”,“& Check2 &”)”)
你得分开来看,并不是你看到的"& Check1 &” ,正确的应该是"," | & Check1 & | "," .
其中“&”并不是取地址,而是字符串连接符,是字符“,” 与 Check1 与 “,” 三个字符串的连接!仔细看看SQL语组成结构吧.
If Adodc1.Recordset.RecordCount>0 Then :这句是判断当前数据库中记录总数
Adodc1.Recordset.MoveLast ':这句是将当前游标移动到最后一条记录
Text6.Text=Val(Adodc1.Recordset.Fields(“ID”))+1 还要这句不懂:这句是将最后一条记录的ID值加1后放到Text6中
Else
Text6.Text=1 ,这句是前面的判断条件不成立(即数据库当前无记录)时给Text6赋值"1” .
看了 IfText2.Text=T...的网友还看了以下:
针对这条语句查表时很慢,怎么才能快一些$orderdetail['yk']=$db->execute 2020-03-31 …
implement和execute都有v.执行的意思/那这两个词有什么区别呢?在句中的用法? 2020-04-13 …
MicrosoftJETDatabaseEngine错误'80040e14'INSERTINTO语 2020-04-27 …
英语翻译翻译图纸过程中,遇到execute2times1xASDRAWN2xMIRRORIMAGE 2020-05-14 …
英语翻译The virtual manufacturing approach in this pa 2020-05-15 …
matlab中使用polyfit函数报错试用了几个例子,执行polyfit函数时无一例外报错:At 2020-05-16 …
人教版九年级英语unit1 self check2怎么写,急 2020-05-17 …
九年级英语新目标UNIT10 SELF CHECK2帮忙写篇无语法错误的,连贯的就好了最好马上给我 2020-05-17 …
9年级英语(人教版) 利用Unit1中self check2的资料写一篇英语作文 2020-05-17 …
IfText2.Text=Text3.TextThenSetadoRs=adoCon.Execut 2020-07-26 …