按键精灵MySql数据库操作
Posted PHP飞鸟的博客
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了按键精灵MySql数据库操作相关的知识,希望对你有一定的参考价值。
查询
mysql服务器地址="192.168.1.166" 用户名 = "root" 密码 = "123" 数据库名="bookshop" 端口号="3306" MySql句柄 = Plugin.Super_MySQL.mysql_connect(MySql服务器地址, 用户名, 密码, 数据库名, 端口号) sql语句 = "select * from users" 返回=Plugin.Super_MySQL.mysql_query(MySql句柄,sql语句) 记录集句柄 = Plugin.Super_MySQL.store_result(MySql句柄) rows = Plugin.Super_MySQL.num_rows(记录集句柄) For i = 1 To rows //读字段 username=Plugin.Super_MySQL.fetch_text(记录集句柄,"username") //读字段 pass = Plugin.Super_MySQL.fetch_text(记录集句柄, "pass") TracePrint username&","&pass //下一行 Plugin.Super_MySQL.row_next 记录集句柄 Next
以上是关于按键精灵MySql数据库操作的主要内容,如果未能解决你的问题,请参考以下文章
按键精灵如何调用Excel及按键精灵写入Excel数据的方法教程---入门自动操作表格