摘要:
begin select * from A for json auto end sqlserver2016的存储过程里可以把结果集自动转换为json字符串,传入参数也可以json字符串格式,非常方便。 今天测试了一个一万条数据的查询,却只能读到几十条,懵逼了。 for rows.Next() { e 阅读全文
摘要:
create table RF_Sys_Group( ID nchar(36) not null constraint PK_RF_Sys_Group primary key, NAME nchar(20) not null)gonchar会在不够的数据末尾补充空字符直到位数补齐。注:20指的是字符 阅读全文
摘要:
if LINUX: from . import _pslinux as _psplatform elif WINDOWS: from . import _pswindows as _psplatform else: # pragma: no cover raise NotImplementedErr 阅读全文