SELECT ODBC表和INSERT到SQL Server

时间:2015-11-24 17:27:15

标签: c# sql odbc

我有一个与数据库的ODBC连接,我需要一个包含10列的数据表。

我需要将此表插入SQL Server数据库。我尝试了很多方法,但仍然有任何结果。

<li class="list-group-item" ng-repeat="course in courses | filter: search" on-courses-loaded="fetch_subscribed">
    <!--<course-info course="course"></course-info> IS NEXT DIV-->
    <div> 
        <!--<subscribe code="course.code" triggered="true"></subscribe> IS NEXT DIV-->
        <div ng-show="available">
            <button type="button" class="btn btn-success" ng-hide="subscribed" ng-click="subscribe()">
                <span class="glyphicon glyphicon-ok"></span> Subscribe
            </button>

    <button type="button" class="btn btn-danger" ng-show="subscribed" ng-click="unsubscribe()">
                <span class="glyphicon glyphicon-remove"></span> Unsubscribe
            </button>
        </div>
    </div>

一切正常但是当commandB.ExecuteNonQuery();进入,出现错误:

“列名或指定值与表的定义不对应。”

是翻译。

0 个答案:

没有答案