惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

J
Java Code Geeks
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
H
Hackread – Cybersecurity News, Data Breaches, AI and More
腾讯CDC
F
Fortinet All Blogs
I
InfoQ
Jina AI
Jina AI
有赞技术团队
有赞技术团队
A
About on SuperTechFans
Stack Overflow Blog
Stack Overflow Blog
小众软件
小众软件
Recent Announcements
Recent Announcements
aimingoo的专栏
aimingoo的专栏
雷峰网
雷峰网
B
Blog RSS Feed
C
Check Point Blog
Y
Y Combinator Blog
博客园 - 聂微东
云风的 BLOG
云风的 BLOG
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
Hugging Face - Blog
Hugging Face - Blog
Microsoft Security Blog
Microsoft Security Blog
Engineering at Meta
Engineering at Meta
G
Google Developers Blog

博客园 - 没剑

一段实现页面上的图片延时加载的js 失业了,别人不会告诉你的10件事 正确的SWOT分析方法(转) 界面内容优化的层次(转) 常用的CSS命名规则 jq插件之仿“卓越亚马逊”首页弹出菜单效果 jq图片预加载+自动等比例缩放插件 Interbase/Firebird的SQL语法(收藏) mvc preview 2中,找到的一段表单数据填充实体的函数 jquery插件:web2.0分格的分页脚,可用于ajax无刷新分页 jquery插件:任意位置浮动固定层(09-11-05更新插件) jquery调用WebService和WebService输出JSON 兼容ie firefox 半透明效果 再次发布一个jq的下拉框式日期选择插件 dateSelector ~ 发布一个jQuery做的导航菜单的插件 submenu js让网页标题闪动效果(记) 关于接口使用getType的方法的问题 终于找到个可以在sql2000下用的正则啦,哈哈 定时删除sql中睡眠的进程 - 没剑 - 博客园
实现firebird的Embedded模式(.net 3.5)
没剑 · 2008-06-16 · via 博客园 - 没剑

实现的关键:copy fbembed.dll  icudt30.dll  icuuc30.dll到system32文件夹下 打包下载这几个文件

代码如下: 

 Dim connectionString = New FbConnectionStringBuilder()
        connectionString.ClientLibrary 
= "fbembed.dll"
        connectionString.ServerType 
= FbServerType.Embedded
        connectionString.Database 
= Path.Combine(AppDomain.CurrentDomain.BaseDirectory, "Test.Fdb")
        connectionString.Pooling 
= True
        connectionString.Dialect 
= 3
        
Dim conn As New FbConnection(connectionString.ToString)
        
Dim comm As New FbCommand("select first 10 * from test", conn)
        conn.Open()
        
Dim fp As New FbDataAdapter(comm)
        
Dim ds As New DataSet
        fp.Fill(ds)
        fp.Dispose()
        comm.Dispose()
        conn.Close()
        Repeater1.DataSource 
= ds.Tables(0)
        Repeater1.DataBind()
        ds.Dispose()