查询在线数据库
我对数据库了解甚少。是否可以通过 URL 向 SQL Server 进行查询?如果是,您能提供一个示例解释吗? 还有一个问题,在代码中处理这种情况的最佳方法是什么?
I know very little about databases. Is it possible to make a query to a sql server with a URL? if yes, can you provide a sample explanation.
Also another question, what is the best way to handle this situation in code?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
不,无法通过 URL 查询数据库。但您可以自己构建一个。
在您的服务器上,通过 URL 接收查询并运行查询并将查询的输出返回给用户。
但强烈建议不要这样做,因为任何人都可以访问您的数据库,除非您通过在 URL 本身中询问用户名/密码来添加安全措施。
No, it is not possible to query a database via URL. But you can build one on your own.
On your server, receive the query via URL and run the query and return the output of the query to the user.
But this is highly discouraged, as anyone can access your database, unless you add security measures, by asking for username/password in the URL itself.
是的,您可以通过传递 sql 查询作为链接的获取值来做到这一点
例如。 http://www.site.com/?query=Select * 来自表
然后在页面内使用该查询
只需连接数据库并执行它..
你会得到你的 ans 作为 json 对象
就是这样
ya you can do so by passing thee sql query as get value of the link
eg. http://www.site.com/?query=Select * from tbl
n then use that query inside of the page
by just connecting db n executing it..
you will get your ans as json object
thats it