0

我正在使用 C# 应用程序,它看起来已经准备好将图像插入到我的数据库中,但是我的存储过程吐出一个隐式转换错误。我将图像读入字节数组并将字节数组传递给我的存储过程。它需要一个varbinary参数,因此会出现错误。所以我将我的存储过程更改为:

ALTER PROCEDURE insertPlayerImage 
      @playerID varchar(9), 
      @profileImage varchar(max), 
      @pending char(1)
AS
    CONVERT(varbinary(max), @profileImage)

INSERT INTO PlayerImage(playerID, profileImage, pending)
VALUES(@playerID, @profileImage, @pending)
GO

它告诉我它需要一个varchar(我的字节数组)并将数组转换为varbinary文件。好吧,我的存储过程不喜欢我拥有的转换行。但如果我只是这样做

SELECT CONVERT(varchar, GETDATE());  

有用。所有谷歌搜索都指向转换日期,就好像它是唯一可以使用转换的东西。

4

3 回答 3

1

您应该能够使用 varbinary(max) 作为参数类型。如果没有,那么您在发出 Execute 之前没有正确设置您的 db 命令对象或参数。

 public DataTable ExecuteParameterizedStoredProcedureObjects(string procedureName, Dictionary<string, object> parameters)
        {
            var dataTable = new DataTable();
            var _sqlConnection = new SqlConnection(_connectionString);
            var cmd = new SqlCommand(procedureName, _sqlConnection);
            cmd.CommandType = CommandType.StoredProcedure;

            var da = new SqlDataAdapter(cmd);
            foreach (var entry in parameters)
            {
                cmd.Parameters.Add(entry.Key, entry.Value);
            }

            try
            {
                _sqlConnection.Open();
                da.Fill(dataTable);
            }
            catch (Exception ex)
            {
                var errorText = string.Format("Occ Repository ExecuteQuery Error : QueryString={0} :: Error={1}", procedureName, ex.Message);
                throw new Exception(errorText, ex);
            }
            finally
            {
                da.Dispose();
                _sqlConnection.Dispose();
            }

            return dataTable;
        }

用类似的东西调用它:

 foreach (var record in missingGridEntries)
             {
                 var parameters = new Dictionary<string, object>();
                 parameters.Add("@DataID",int.Parse(record.NodeId));
                 var results = _llDb.ExecuteParameterizedStoredProcedureObjects("listFullPath",parameters);

                 foreach(DataRow dataRow in results.Rows)
                 {
                     record.NodePath = dataRow["fullpath"].ToString();
                     record.NodeFilename = dataRow["name"].ToString();
                 }

             }
于 2013-05-15T18:04:57.930 回答
0

你在使用 SQL Server 吗?如果是这样,请参阅此页面以了解 SQL 数据类型到 CLR 数据类型的映射:http: //msdn.microsoft.com/en-us/library/cc716729.aspx

SQL Server char, varchar,ncharnvarchar所有映射到/从 C# string(虽然 achar[]也可以工作)。

SQL Server binary andvarbinary map to/from a C#byte[]`。

你遇到的实际问题是什么?

此外,如果您将二进制数据作为 varchar 传递给 SQL Server,我希望它能够在 UTF-16(CLR 内部字符串编码)到 SQL Server 使用的任何代码页之间的转换中得到修改。

另一件事要注意:您的存储过程:

ALTER PROCEDURE insertPlayerImage 
  @playerID varchar(9), 
  @profileImage varchar(max), 
  @pending char(1)
AS

  CONVERT(varbinary(max), @profileImage)

  INSERT INTO PlayerImage
  ( playerID , profileImage , pending )
  VALUES
  ( @playerID , @profileImage , @pending )

GO

不是合法的 SQL。Convert()是一个函数,而不是 SQL 语句。它甚至不编译。如果您尝试将varchar参数转换@profileImagevarbinary,您将不得不按照以下方式进行操作

 declare @image varbinary(max)
 set @image = convert(varbinary(max),@profileImage)

如果你的存储过程有签名

create procedure dbo.insertPlayerImage

  @playerId     varchar(9) ,
  @profileImage varbinary(max) ,
  @pending      char(1)

as
...

然后这段代码会帮你:

public int insertProfileImage( string playerId , byte[] profileImage , bool pending )
{
  if ( string.IsNullOrWhiteSpace(playerId) ) throw new ArgumentException("playerId" ) ;
  if ( profileImage == null || profileImage.Length < 1 ) throw new ArgumentException("profileImage") ;

  int rowCount ;

  string connectString = GetConnectString() ;
  using ( SqlConnection connection = new SqlConnection(connectString) )
  using ( SqlCommand command = connection.CreateCommand() )
  {

    command.CommandType = CommandType.StoredProcedure ;
    command.CommandText = "dbo.insertPlayerImage" ;

    command.Parameters.AddWithValue( "@playerId"     , playerId            ) ;
    command.Parameters.AddWithValue( "@profileImage" , profileImage        ) ;
    command.Parameters.AddWithValue( "@pending"      , pending ? "Y" : "N" ) ;

    rowCount = command.ExecuteNonQuery() ;

  }

  return rowCount ;
}

但是,如果您要传递null图像数据,则需要更改参数值的设置方式。类似于以下内容:

command.Parameters.AddWithValue( "@profileImage" , profileImage != null ? (object)profileImage : (object)DBNull.Value ) ;

或者

SqlParameter p = new SqlParameter( "@profileImage" , SqlDbType.VarBinary ) ;
p.Value = DBNull.Value ;
if ( profileImage != null )
{
  p.Value = profileImage ;
}
command.Parameters.Add( p ) ;
于 2013-05-15T18:06:00.853 回答
0

好的 - 你需要这个:

获取参数的存储过程,varbinary(max)以便您可以将其插入Varbinary(max)数据库表的列中:

CREATE PROCEDURE insertPlayerImage 
      @playerID varchar(9), 
      @profileImage varbinary(max), 
      @pending char(1)
AS
    CONVERT(varbinary(max), @profileImage)

    INSERT INTO PlayerImage(playerID, profileImage, pending)
    VALUES(@playerID, @profileImage, @pending)

获取在 ASP.NET 中上传的文件内容并调用此存储过程的 C# 代码:

// set up connection and command
using(SqlConnection conn = new SqlConnection("your-connection-string-here"))
using(SqlCommand cmd = new SqlCommand("dbo.insertPlayerImage"))
{
    // define parameters
    cmd.CommandType = CommandType.StoredProcedure;
    cmd.Parameters.Add("@playerID", SqlDbType.VarChar, 9);
    cmd.Parameters.Add("@playerImage", SqlDbType.VarBinary, -1);
    cmd.Parameters.Add("@pending", SqlDbType.Char, 1);

    // set the parameter values
    cmd.Parameters["@playerID"].Value = Session["playerID"].ToString();
    cmd.Parameters["@playerImage"].Value = uplImage.FileBytes;
    cmd.Parameters["@pending"].Value = "Y";

    // open connection, execute stored procedure, close connection
    conn.Open();
    cmd.ExecuteNonQuery();
    conn.Close();
}

真的绝对没有必要将上传文件的内容从byte[]任何东西转换(然后再转换回来!) - 只需设置varbinary(max)参数的值并调用该存储过程 - 这就是您需要做的一切!

于 2013-05-15T18:45:04.737 回答