[求助]连接数据库 提示 From 子句出错
在下列代码里如果直接指定Adodc1.RecordSource="学生表",可以连接,使用了SQL语句 提示 :From 子句语法出错,请帮忙看下 出错在那里?Dim sql As String
Adodc1.ConnectionString = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=F:\ACCESS数据库\db1.mdb;Persist Security Info=False"
Adodc1.CommandType = adCmdTable
sql = "select * from 学生表 where ID =30318 "
Adodc1.RecordSource = sql
Adodc1.Refresh
Adodc1.Recordset.MoveNext
Text1.Text = Adodc1.Recordset.Fields("ID").Value
Text2.Text = Adodc1.Recordset.Fields("姓名").Value