VFP 唯一标识符与 Guid 相同吗?
我正在将 FoxPro 数据库转换为 SQL Server,其中一些键是 VFP 生成的唯一标识符 - 我假设是 GUID。 这些是有效的唯一标识符吗?
我可以只使用字节并将它们轻松转换为 SQL Server 中的唯一标识符吗?
谢谢,
克雷格
I'm converting a foxpro database to SQL Server and some of the keys are VFP-generated unique identifiers - GUIDs I assume. Are these valid uniqueidentifiers?
Can I just use the bytes and convert them easily into a uniqueidentifier in SQL Server?
Thanks,
Craig
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
是的,是一样的
yes it is the same
VFP 的唯一标识符只是整数,而不是 GUID。 默认情况下,它们从 1 开始,递增 1。
VFP's unique identifiers are just integers, not GUIDs. By default, they start from 1 and go up by 1.