vs2005怎么调用sql语句,需要加啥头文件?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了vs2005怎么调用sql语句,需要加啥头文件?相关的知识,希望对你有一定的参考价值。
你如我要写 update status=4 from abc where id = 0001这句话,直接写是通不过的
先添加命名空间using System.Data;
using System.Data.SqlClient;
后用下面代码处理,只用你的一个语句是不行的。
//sql 连接字符串
string constr="server=.;database=你数据库的名称;uid=sa;pwd=;";
SqlConnection conn = new SqlConnection(constr);
SqlCommand comm = new SqlCommand();
comm.Connection = conn;
comm.CommandType = CommandType.Text;
//这里就是你要执行的SQL语句
comm.CommandText = "update status=4 from abc where id = 0001";
if (conn.State != ConnectionState.Open)
conn.Open();
comm.ExecuteNonQuery();
conn.Close();
上面语句对不同的数据库系统稍有不同,注意把第一句中的“你数据库的名称”改成你所用数据库的名字。 参考技术A //sql 连接字符串
SqlConnection conn = new SqlConnection("Connect String");
SqlCommand comm = new SqlCommand();
comm.Connection = conn;
comm.CommandType = CommandType.Text;
//这里就是你要执行的SQL语句
comm.CommandText = "update status=4 from abc where id = 0001";
if (conn.State != ConnectionState.Open)
conn.Open();
comm.ExecuteNonQuery();
conn.Close(); 参考技术B using System.Data;
using System.Data.SqlClient;追问
不行啊……
error C2143: 语法错误 : 缺少“;”(在“.”的前面)
error C2873: “System”: 符号不能用在 using 声明中
error C2059: 语法错误 : “.”
error C2143: 语法错误 : 缺少“;”(在“.”的前面)
error C2873: “System”: 符号不能用在 using 声明中
error C2059: 语法错误 : “.”
C++中怎么用API作图啊 ,要包含啥头文件吗? 在先急等
vc6.0 C++中怎么用API作图啊 ,要包含什么头文件吗?
不是用MFC哦。希望有例子,画个圆 矩形等等
MSDN上有WIN32程序开发的例子。 你用向导添加一个WIN32项目,再自己重写OnPaint()函数,最后用InvalidateRect(),来激发一个重画事件。
做图要用到API:
void OnPaint(HWND hWnd,UINT message, WPARAM wParam, LPARAM lParam)
PAINTSTRUCT ps;
HDC hdc;
hdc=BeginPaint(hWnd,&ps); //GetDC本质上调用了这个
//在这里加画图代码。如:
Ellipse(hdc,0,0,100,100); //画圆
Rectangle(hdc,0,100,100,200);//画矩形
TextOut(hdc,50,50,_T("Hello, World"),6); //文字也是图
EndPaint(hWnd,&ps); //释放DC handle
参考技术A MFC的绘图类其实是对Windows GDI API的封装,目前发展到GDI+,其实直接使用GDI+也是相当强大的,我给你介绍一下怎么使用windows的GDI+吧:
(1)准备使用GDI+ 的API
#include <windows.h>
#include <gdiplus.h>
using namespace Gdiplus;
(2)列子:
VOID Example_DrawLine(HDC hdc) // 函数参数为当前绘图设备上下文的句柄
Graphics graphics(hdc); // 构造一个graphics对象,然后绘图就引用此对象方法即可,厉害啊
Pen blackPen(Color(255, 0, 0, 0), 3); // 创建画笔
Point point1(100, 100); // 两个点
Point point2(500, 100);
graphics.DrawLine(&blackPen, point1, point2); // 画一条线
VOID Example_DrawRectangle(HDC hdc)
Graphics graphics(hdc);
Pen blackPen(Color(255, 0, 0, 0), 3);
Rect rect(0, 0, 200, 200); // 矩形
graphics.DrawRectangle(&blackPen, rect);
VOID Example_DrawEllipse(HDC hdc
Graphics graphics(hdc);
Pen bluePen(Color(255, 0, 0, 255));
Rect ellipseRect(0, 0, 200, 100);
graphics.DrawEllipse(&bluePen, ellipseRect);
相信你看了这几个列子应该知道怎么使用GDI+ 的API来作图了 参考技术B 一个不停地显示随机矩形的程序
#include <windows.h>
#include <stdlib.h>// for the rand function
LRESULT CALLBACK WndProc (HWND, UINT, WPARAM, LPARAM) ;
void DrawRectangle (HWND) ;
int cxClient, cyClient ;
int WINAPI WinMain (HINSTANCE hInstance, HINSTANCE hPrevInstance,
PSTR szCmdLine, int iCmdShow)
static TCHAR szAppName[] = TEXT ("RandRect") ;
HWND hwnd ;
MSG msg ;
WNDCLASS wndclass ;
wndclass.style = CS_HREDRAW | CS_VREDRAW ;
wndclass.lpfnWndProc= WndProc ;
wndclass.cbClsExtra = 0 ;
wndclass.cbWndExtra = 0 ;
wndclass.hInstance = hInstance ;
wndclass.hIcon = LoadIcon (NULL, IDI_APPLICATION) ;
wndclass.hCursor = LoadCursor (NULL, IDC_ARROW) ;
wndclass.hbrBackground= (HBRUSH) GetStockObject (WHITE_BRUSH) ;
wndclass.lpszMenuName= NULL ;
wndclass.lpszClassName= szAppName ;
if (!RegisterClass (&wndclass))
MessageBox (NULL, TEXT ("This program requires Windows NT!"),
szAppName, MB_ICONERROR) ;
return 0 ;
hwnd = CreateWindow (szAppName, TEXT ("Random Rectangles"),
WS_OVERLAPPEDWINDOW,
CW_USEDEFAULT, CW_USEDEFAULT,
CW_USEDEFAULT, CW_USEDEFAULT,
NULL, NULL, hInstance, NULL) ;
ShowWindow (hwnd, iCmdShow) ;
UpdateWindow (hwnd) ;
while (TRUE)
if (PeekMessage (&msg, NULL, 0, 0, PM_REMOVE))
if (msg.message == WM_QUIT)
break ;
TranslateMessage (&msg) ;
DispatchMessage (&msg) ;
else
DrawRectangle (hwnd) ;
return msg.wParam ;
LRESULT CALLBACK WndProc (HWND hwnd, UINT iMsg, WPARAM wParam, LPARAM lParam)
switch (iMsg)
case WM_SIZE:
cxClient = LOWORD (lParam) ;
cyClient = HIWORD (lParam) ;
return 0 ;
case WM_DESTROY:
PostQuitMessage (0) ;
return 0 ;
return DefWindowProc (hwnd, iMsg, wParam, lParam) ;
void DrawRectangle (HWND hwnd)
HBRUSHhBrush ;
HDC hdc ;
RECT rect ;
if (cxClient == 0 || cyClient == 0)
return ;
SetRect (&rect, rand () % cxClient, rand () % cyClient,
rand () % cxClient, rand () % cyClient) ;
hBrush = CreateSolidBrush (
RGB (rand () % 256, rand () % 256, rand () % 256)) ;
hdc = GetDC (hwnd) ;
FillRect (hdc, &rect, hBrush) ;
ReleaseDC (hwnd, hdc) ;
DeleteObject (hBrush) ;
参考资料:Windows程序设计中文版(CHM)
参考技术C #include "windows.h"#include "winuser.h"
#include "wingdi.h"
HWND hwnd = 0; //如果是0,则表示在屏幕上画
HDC hdc = GetDC(hwnd);
Ellipse(hdc,0,0,100,100); //画圆
Rectangle(hdc,0,100,100,200);//画矩形
ReleaseDC(hwnd,hdc); 参考技术D 先包含windows.h再说。
以上是关于vs2005怎么调用sql语句,需要加啥头文件?的主要内容,如果未能解决你的问题,请参考以下文章