Sybase BulkCopy WriteToServer错误:','附近的语法不正确

时间:2015-01-15 15:53:06

标签: sybase sybase-ase bcp

是否可以使用AseBulkCopy.WriteToServer填充临时表?

我在我的测试应用程序中调用了以下方法两次:首先使用非临时表,然后使用临时表。代码在非临时表中运行正常,但在尝试填充临时表时出现错误:

Incorrect syntax near ','.

被提出。

在这两种情况下,目标和源表只有一个列,定义为具有相同名称的INT。

我尝试使用DataTable和IDataReader作为数据源,但都会导致出现同样的错误。

我尝试过使用" EnableBulkLoad = 1"和" EnableBulkLoad = 2"在连接字符串中。

我尝试过使用原始临时表名称和前缀为" dbo的名称。"

要加载的数据是单个int值(即1行,1列),但如果有更长的行或多行,也会发生这种情况。

值得注意的是,我可以将数据插入临时表(使用AseCommand.ExecuteNonQuery),并且可以执行' SELECT COUNT(1)'从temp表(使用AseCommand.ExecuteScalar)成功。

以下是代码:

  private static void BulkCopyInsertIntoTable(string tableName)
  {
    IDataReader dataSource = null;
    SqlConnection sourceConnection = null;
    MssqlCommand.GetDataReader(SqlServerConnectionString, out sourceConnection, out dataSource);
    AseConnection targetConnection = new AseConnection(SybaseConnectionString);
    try
    {
      targetConnection.Open();
      AseCommand cmd = new AseCommand();
      AseBulkCopy blk = new AseBulkCopy(targetConnection);
      blk.DestinationTableName = tableName;
      //blk.ColumnMappings.Clear();
      //blk.ColumnMappings.Add(new AseBulkCopyColumnMapping(0, 0));//Doesn't make any difference with a datasource, causes an error to be raised with a datatable.

      Console.WriteLine("bulkcopy insert into the table " + tableName + " ..starting: datasource");
      //blk.WriteToServer(dataSource);

      Console.WriteLine("bulkcopy insert into the table " + tableName + " ..starting: datatable");
      blk.ColumnMappings.Clear();
      DataTable dt = SybaseCommand.GetFakeDataTable(); ;
      blk.WriteToServer(dt);
    }
    catch (AseException ex)
    {
      Console.WriteLine(ex.Message);
    }
    finally
    {
      targetConnection.Dispose();
      Console.WriteLine("bulkcopy insert into the table " + tableName + " ..ended");
    }
  }

首先,是否可以使用WriteToServer填充临时表? 假设是,我可能做错了什么?

更新: 当我改变行

blk.DestinationTableName = tableName;

blk.DestinationTableName = "XXXX";

我得到了同样的错误,那么在使用WriteToServer时是否有关于如何命名临时表的规则? tableName的值是我用于直接INSERTSELECT COUNT(1)查询的值,因此我预计它是正确的。

由于

1 个答案:

答案 0 :(得分:0)

根据我的经验,答案是否定的,您不能使用AseBulkCopy.WriteToServer来填充临时表。