代码语言
.
CSharp
.
JS
Java
Asp.Net
C
MSSQL
PHP
Css
PLSQL
Python
Shell
EBS
ASP
Perl
ObjC
VB.Net
VBS
MYSQL
GO
Delphi
AS
DB2
Domino
Rails
ActionScript
Scala
代码分类
文件
系统
字符串
数据库
网络相关
图形/GUI
多媒体
算法
游戏
Jquery
Extjs
Android
HTML5
菜单
网页交互
WinForm
控件
企业应用
安全与加密
脚本/批处理
开放平台
其它
【
C
】
执行SQL文件
作者:
章毅明
/ 发布于
2013/8/5
/
909
// ExecuteSQLfile.cpp : Defines the entry point for the console application. // #include "stdafx.h" #include "ExecuteSQLfile.h" #import "c:\Program Files\Common Files\System\ADO\msado15.dll" \ no_namespace rename("EOF", "EndOfFile") #ifdef _DEBUG #define new DEBUG_NEW #undef THIS_FILE static char THIS_FILE[] = __FILE__; #endif ///////////////////////////////////////////////////////////////////////////// // The one and only application object CWinApp theApp; using namespace std; int _tmain(int argc, TCHAR* argv[], TCHAR* envp[]) { int nRetCode = 0; // initialize MFC and print and error on failure if (!AfxWinInit(::GetModuleHandle(NULL), NULL, ::GetCommandLine(), 0)) { // TODO: change error code to suit your needs cerr << _T("Fatal Error: MFC initialization failed") << endl; nRetCode = 1; } else { CFileDialog dlg(TRUE,NULL,NULL,OFN_HIDEREADONLY | OFN_OVERWRITEPROMPT,_T("SQL Files(*.sql)|*.sql|All Files(*.*)|*.*|")); if(dlg.DoModal()==IDOK) { OFSTRUCT of; HANDLE rfile=(HANDLE)OpenFile(dlg.GetPathName(),&of,OF_READ); if ( rfile != (HANDLE)HFILE_ERROR ) { DWORD filesize=GetFileSize(rfile,NULL); char* buffer=new char[filesize+1]; DWORD readsize; ReadFile(rfile,buffer,filesize,&readsize,NULL); buffer[filesize]=0; CoInitialize(NULL); //_bstr_t varSource="Provider=Microsoft.Jet.OLEDB.4.0;Data Source=%%1"; //*.mdb //_bstr_t varSource="Data Source=localhost;Initial Catalog=DB1;User Id=sa;Password=sa;"; //_bstr_t varSource="Provider=SQLNCLI11;Server=myServerAddress;Database=myDataBase;Uid=myUsername;Pwd=myPassword;"; //_bstr_t varSource="Provider=SQLNCLI11;Server=myServerAddress;Database=myDataBase;Trusted_Connection=yes;"; //_bstr_t varSource="Provider=SQLNCLI11;Server=myServerName\theInstanceName;Database=myDataBase;Trusted_Connection=yes;"; _bstr_t varSource="Provider=SQLNCLI10;Server=myServerAddress;Database=myDataBase;Uid=myUsername;Pwd=myPassword;"; //_bstr_t varSource="Provider=SQLNCLI10;Server=myServerAddress;Database=myDataBase;Trusted_Connection=yes;"; //_bstr_t varSource="Provider=SQLNCLI10;Server=myServerName\theInstanceName;Database=myDataBase;Trusted_Connection=yes;"; //_bstr_t varSource="Provider=SQLOLEDB.1;Integrated Security=SSPI;Persist Security Info=False;Initial Catalog=%%1;Data Source=localhost";"; _ConnectionPtr m_pConnection(_uuidof(Connection)); if(m_pConnection==NULL) return 1; _variant_t RecordAffected; try { m_pConnection->Execute((_bstr_t)buffer,&RecordAffected,adCmdUnknown); //adCmdText } catch(_com_error e) { AfxMessageBox(e.Description()); } CoUninitialize(); delete buffer; CloseHandle(rfile); } } } return nRetCode; }
试试其它关键字
执行SQL文件
同语言下
.
获取手机通讯录 iOS去除数字以外的所有字符
.
异步加载音乐等资源
.
交通罚单管理系统
.
freemark实现,简单的替换
.
计算斐波那契数列
.
base64解码 包括解码长度
.
图像显示
.
冒泡排序
.
输入十进制数,输出指定进制
.
链式栈
可能有用的
.
C#实现的html内容截取
.
List 切割成几份 工具类
.
SQL查询 多列合并成一行用逗号隔开
.
一行一行读取txt的内容
.
C#动态修改文件夹名称(FSO实现,不移动文件)
.
c# 移动文件或文件夹
.
c#图片添加水印
.
Java PDF转换成图片并输出给前台展示
.
网站后台修改图片尺寸代码
.
处理大图片在缩略图时的展示
章毅明
贡献的其它代码
(
8
)
.
删除文件夹
.
dxf文件显示与转换
.
自动监视并处理共享目录中的文本文件并处理
.
通过每句或者int标识获取指定天,月,星期的开始日期
.
利用存储过程实现模糊查询
.
遍历目录删除空子目录及去除文件只读属性
.
无需计数的批量下载网络文件
.
执行SQL文件
Copyright © 2004 - 2024 dezai.cn. All Rights Reserved
站长博客
粤ICP备13059550号-3