取消
显示结果 
搜索替代 
您的意思是: 

ADOdb recordset update

Do anyone knows how to update a recordset in a mySQL DB using LV7.1.1, LabSQL (free library), and ADO?
0 项奖励
1 条消息(共 3 条)
4,513 次查看

Are you looking for the SQL syntax or which function to use in LabSQL? The syntax is:

UPDATE table_name [options] SET col_name = expr,... [WHERE clause]

as in UPDATE testres SET meas2 = 2.5 WHERE meas1 < 0

The function in LabSQL to use is SQL Execute. Set the Return Data input to false. You would first use ADO Connection Create and ADO Connection Open.

0 项奖励
2 条消息(共 3 条)
4,502 次查看

Thanks a lot, this work. 极度高兴的表情

I'd like to know something about ADO.update method, and the use of variant data

0 项奖励
3 条消息(共 3 条)
4,488 次查看