码迷,mamicode.com
首页 >  
搜索关键字:sqlite dll    ( 15003个结果
SQLite 数据类型 和 基本命令
SQLite 数据类型 和 基本命令 https://www.sqlite.org/index.html https://www.runoob.com/sqlite/sqlite-data-types.html https://github.com/pawelsalawa/sqlitestudio ...
分类:数据库   时间:2020-03-13 18:46:56    阅读次数:74
Webpack DllPlugin 和 DllReferencePlugin
Webpack DllPlugin 和 DllReferencePlugin 1.插件的作用 是一种分包的解决方案,它可以将部分代码抽出来,单独形成一个插件包,类似windows系统中的dll包. 2.插件的用途 因为插件的作用是分离代码,所以常用在代码中做公共代码的抽离,例如React中可以把公共 ...
分类:Web程序   时间:2020-03-13 18:36:45    阅读次数:86
Linux安装Python3
1.安装依赖环境 yum -y install zlib-devel bzip2-devel openssl-devel ncurses-devel sqlite-devel readline-devel tk-devel gdbm-devel db4-devel libpcap-devel xz- ...
分类:编程语言   时间:2020-03-13 18:27:08    阅读次数:69
windows 10 msvcp100.dll丢失的解决方法
1. 安装Microsoft Visual C++ 2010 (安装后无需重启即可生效)2. 下载地址如下: Microsoft Visual C++ 2010 Microsoft Visual C++ 2010 SP1 Redistributable Package (x86) https://w ...
分类:Windows程序   时间:2020-03-13 12:43:26    阅读次数:104
C#封送结构体数组到C++ DLL
[StructLayout(LayoutKind.Sequential)] struct FaceLibQuery { public int iSize; public int iChanNo; public int iPageNo; public int iPageCount; }; FaceLi ...
分类:编程语言   时间:2020-03-13 11:26:54    阅读次数:91
sqlite条件查询查询blob
最近工作需要,需要实现以下效果: 我的表是这样的: 查询一个 blob需要实现以下效果: 现在有一个数据表table1,里面有一个字段的类型是blob类型,字段名为f1 需要查询这个表里面f1为空的时候 新建一个列名叫isnew,如果f1为空的时候isnew字段为1 所以sql要实现新建列和判断bl ...
分类:数据库   时间:2020-03-12 19:18:52    阅读次数:229
c# opc 功能相关
C# 程序里,使用 Interop.OPCAutomation.dll ,用于和opc通讯,读opc变量,写opc变量 链接: https://pan.baidu.com/s/1OpUa_Jct1gfU92RMXe9hRQ 提取码: pv14 封装后的exe 如果放到别的机器上,可能会无法使用 解决 ...
分类:Windows程序   时间:2020-03-12 18:50:23    阅读次数:78
sqlite实现分页查询
最近工作需要,需要使用sqlite数据库进行分页查询, 全部查询然后用代码分页的话效率太慢,直接用sql简洁明了 在网上找了一些方法,以下是sql,每页条数和页码可根据需要来更换: select * from users order by id limit 10 offset 0;//offset代 ...
分类:数据库   时间:2020-03-12 18:32:14    阅读次数:61
C# 利用Aspose.Words .dll将本地word文档转化成pdf
原文:https://www.cnblogs.com/qiwu1314/p/5899545.html?utm_source=itdadao&utm_medium=referral 下载Aspose.Words .dll http://pan.baidu.com/s/1c8659k 在vs2010中新 ...
分类:Windows程序   时间:2020-03-12 14:36:03    阅读次数:100
EPX-Studio调用Dll模块
1 procedure TForm1.BitBtn1Click(Sender: TObject); 2 var REP : IExcelPanelXDisp; 3 modulePath:string; 4 begin 5 REP := this.NewEPX; 6 REP.AddAValue(ADO ...
分类:其他好文   时间:2020-03-12 14:17:50    阅读次数:50
15003条   上一页 1 ... 58 59 60 61 62 ... 1501 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!