1200字范文,内容丰富有趣,写作的好帮手!
1200字范文 > Add data to the Access database using ADO

Add data to the Access database using ADO

时间:2020-12-20 08:41:23

相关推荐

Add data to the Access database using ADO

清醒时做事,糊涂时读书,大怒时睡觉,无聊时关注为大家准备的精彩内容。下面为大家推荐Add data to the Access database using ADO,无聊中的都看过来。

Add data to the database using ADO

Tools Used :VisualC# .NET

This program shows how to insert data in an access database using ADO andSQLquery. I have anAccess2000 database in projectindebug directory. My database name is mcTest.MDB. You can create your own database and copy in your project's debug directory. I am not attaching database with this code because of size problem.

I have a table 'Developer' in this database which has four columns. I am inserting values into two columns Name and Address in this code.

using System;

using ;

using .OleDb;

namespace ADONETWriteQuery

{

/// summary

/// Summary description for Class1.

/// /summary

class Class1

{

static void Main(string[] args)

{

string strDSN = "Provider=

Source=c:mcTest.MDB";

string strSQL = "INSERT INTO Developer(Name, Address ) VALUES(

'NewName', 'NewAddress')" ;

// create Objects of ADOConnection and ADOCommand

OleDbConnection myConn = new OleDbConnection(strDSN);

OleDbCommand myCmd = new OleDbCommand( strSQL, myConn );

try

{

();

();

}

catch (Exception e)

{

("Oooops. I did it again:{0}", );

}

finally

{

();

}

}

}

}

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。