有人有 URL 缩短 T-Sql 代码吗?
我想将一些 url 和 sql guid 缩短为一些“短”url 格式。
有谁有任何代码或某些代码的链接,用于 T-Sql 中的 url 缩短?
I'm wanting to shorten some url's and sql guids into some 'short' url format.
Does anyone have any code or links to some code, for url shortening in T-Sql?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我得到了答案:)
/我再次向谷歌致敬。
定义
这意味着,我想要一个缩短的网址。所以我将其插入数据库以获取唯一的身份号码。然后我将此 int/big int 转换为 base36 字符串。
我基于我的代码的链接。
……
。
呵呵
I got my answer :)
/me tips his hat to google, yet again.
Definitions
this means, i want a shortened url. so i insert it into a db to grab a unique identity number. I then convert this int/big int to a base36 string.
Links I based my code off.
...
...
HTH.
由于 T-SQL 不太擅长字符串操作,因此我将使用 CLR 存储过程来实现这一点。然后您可以使用任何 .Net 缩短函数。
Since string manipulation is something T-SQL doesn't do so well, this is something I'd use a CLR stored procedure for. Then you can use any .Net shortening function.