自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(4)
  • 资源 (1)
  • 收藏
  • 关注

原创 通过odbc32dll等操作access数据库

#include"windows.h"#include"sqlext.h"#include"sql.h"#include"stdio.h"#include"odbcinst.h"int main(){char buffer[255];//增加access数据源SQLRemoveDSNFromIni(“cvaccess”);SQLConfigDataSource(NULL,ODBC_REMOVE_DSN,“Microsoft Access Driver (.mdb)",“CREATE

2021-08-02 10:03:12 271

原创 通过db2cli访问db2

#include"windows.h"#include"sql.h"#include"sqlext.h"#include"stdio.h"int main(){HMODULE db2cli;db2cli=LoadLibrary(“db2cli.dll”);if(db2cli==0){printf(“load db2cli.dll fail\n”);return;}SQLRETURN (SQLAllocHandle) (SQLSMALLINT HandleType,

2021-08-02 10:01:54 382

原创 通过oci.dll访问oracle数据库

#include"windows.h"#include"oci.h"#include"stdio.h"int main(){char buffer[100];OCISession *authp = (OCISession *) 0;OCIServer *srvhp;OCISvcCtx *svchp;OCIStmt *stmthp;OCIEnv *envhp;OCIError *errhp;short r;(void) OCIInitialize((ub4) OCI_DEFAUL

2021-08-02 10:00:19 258

原创 通过ws2_32.dll发送邮件

通过ws2_32.dll发送邮件#include"windows.h"#include"stdio.h"#include"winsock2.h"main(){SOCKET sock;WSADATA wsaData;WSAStartup(0x0002,&wsaData);sock=socket(AF_INET,SOCK_STREAM,0);if(sockINVALID_SOCKET){WSACleanup();return -1;}struct sockaddr_in t

2021-08-02 09:54:42 223

opc Data Access Custom Interface Standard 2.5a

opc Data Access Custom Interface Standard Version 2.05A

2011-02-17

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除