查询在线数据库

发布于 2024-12-29 06:30:50 字数 89 浏览 0 评论 0原文

我对数据库了解甚少。是否可以通过 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

撑一把青伞 2025-01-05 06:30:50

不,无法通过 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.

沙沙粒小 2025-01-05 06:30:50

是的,您可以通过传递 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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文