首页 > 编程 > .NET > 正文

.net下访问Access数据库需要注意的问题

2024-07-10 13:10:31
字体:
来源:转载
供稿:网友

如果你的某张表中含有blog字段,一般采用的做法如下:

oledbconnection conn = new oledbconnection( .. );

oledbcommand cmd = conn.createcommand();

oledbparameter pastring = new oledbparameter( .. );

oledbparameter paint = new oledbparameter( .. );

oledbparameter pablob = new oledbparameter( .. );

// 当前有两种选择

cmd.commandtext = insert into tablename( ?, ?, ? );

cmd.commandtext = insert tabname( ?, ?, ? );

在设置sql语句时后者比前者少一个into关键字,我们都知道这个关键字是可以省略的,在这里你会选择哪种设置方式?

选择前者:程序正确

选择后者:程序异常-->insert into 语句的语法错误。

// 原因:可能对标准支持不好吧,还没查。

中国最大的web开发资源网站及技术社区,
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表