健康啤酒

文章
3
资源
0
加入时间
2年10月17天

go struct 静态函数_golang使用静态文件(.a文件)进行编译

程序的一般过程:编辑、编译、链接、运行。由于golang的一个项目源码都是开源的,我们很少去关心编译、链接的问题。如果在一个项目中使用了非开源的第三方库,此时怎么打包出来一个可执行的exe程序?golang使用静态文件编译使用go tool compilegolang使用静态文件链接使用go tool link//staticpkg/print.gopackage staticpkgimport ...

sql update 触发器 获得被update的行的信息

create trigger TgNameon tbfor updateas if update(recommend)begin update tb set commenddate=(getdate()) from tb inner join inserted on tb.vlistid=Inserted.vlistidend关键在于Inserted表触发...