摘要:
declare @x decimal(18,8),@y decimal(18,8),@id int set @x=113.69920700 set @y=34.76099100 set @id=0 while @id<30000 begin insert into xy(x,y) values (@ 阅读全文
摘要:
查那些表用此字段 select t.TABLE_NAME,t.COLUMN_NAME,t.DATA_TYPE,t.DATA_LENGTH from user_tab_cols t where t.COLUMN_NAME = '字段名' 不知道怎么用sql语句修改,就用程序简单实现 DataTable 阅读全文
摘要:
之前有一次加班写一个导出PDF,需要有页眉页码等,于是就用itexsharp 导出,数据源用的是datatable 。 参考了博客园的其它文章https://www.cnblogs.com/sparkleDai/p/7604959.html 一个PDFBase.cs using System; us 阅读全文