直接在URL中指定SQL查询


直接在URL中使用,虽说不安全,但还是有需求的


例如:

(1)http://172.144.1.100:8/northwind?sql=select+*+from+Table1+for+xml+auto&root=root

(2)http://172.144.1.100:8/northwind?sql=select+*+from+Table1+where+num=1+for+xml+auto&root=root

(3)http://172.144.1.100:8/northwind?sql=select+*+from+Table1+where+name='joy'+for+xml+auto&root=root

注意字符要加单引号

说明:

此过程建立在虚拟目录建立成功的基础上

SQL语句就不多做介绍,相关的可参考SQL语句详解 

for+xml

指定以xml文档而不是标准行集的形式返回结果。

auto&root=root

根参数标示单一的顶层元素




你可能感兴趣的:(直接在URL中指定SQL查询)