摘要: 1 string to byte string str = "your string" ; byte[] bytes = System.Text.Encoding.ASCII.GetBytes(str); 2 bytes to string byte[] bytes = new ... 阅读全文
posted @ 2007-05-24 15:18 dodo-yufan 阅读(4631) 评论(1) 推荐(0)
摘要: if exists (select * from dbo.sysobjects where id = object_id(N'[dbo].[f_convert]') and xtype in (N'FN', N'IF', N'TF')) drop function [dbo].[f_convert] GO ... 阅读全文
posted @ 2007-05-24 10:33 dodo-yufan 阅读(976) 评论(0) 推荐(0)