当前位置: 首页>>代码示例>>C#>>正文


C# SqlCommand.GetSqlBytes方法代码示例

本文整理汇总了C#中System.Data.SqlClient.SqlCommand.GetSqlBytes方法的典型用法代码示例。如果您正苦于以下问题:C# SqlCommand.GetSqlBytes方法的具体用法?C# SqlCommand.GetSqlBytes怎么用?C# SqlCommand.GetSqlBytes使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在System.Data.SqlClient.SqlCommand的用法示例。


在下文中一共展示了SqlCommand.GetSqlBytes方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: GetStream

        public Stream GetStream(int id, string filename)
        {
            Trace.WriteLine("DBImagePlugin - GetStream");

            var connectionObj = GetConnectionObj();
            connectionObj.Open();
            Stream stream;

            using (connectionObj)
            {
                var sqlDataReader = new SqlCommand(imageBlobQuery, connectionObj)
                {
                    Parameters =
                    {
                        CreateParameter("id", id, SqlDbType.Int),
                        CreateParameter("name", filename, SqlDbType.NVarChar)
                    }
                }.ExecuteReader();

                using (sqlDataReader)
                {
                    if (!sqlDataReader.Read())
                    {
                        throw new FileNotFoundException("Failed to find the specified image " + id + " in the database");
                    }
                    stream = sqlDataReader.GetSqlBytes(0).Stream;
                }
            }

            return stream;
        }
开发者ID:mkhj,项目名称:EcoHotels,代码行数:31,代码来源:DBImagePlugin.cs

示例2: button11_Click

        private void button11_Click(object sender, EventArgs e)
        {
            try
            {
                string netFileName = VissimSingleton.Instance.GetInputFileName();
                string workingDir = VissimSingleton.Instance.GetWorkingDirectory();
                string exeDir = VissimSingleton.Instance.GetExecutionDirectory();

                if (workingDir == exeDir) throw new Exception("ex");

                var files = Directory.GetFiles(workingDir, "*.*", SearchOption.TopDirectoryOnly);
                foreach (string fileName in files)
                {
                    File.Delete(fileName);
                }

                var sb = new SqlConnectionStringBuilder();
                sb.DataSource = "TOSHIBA";
                sb.InitialCatalog = "VISSIM";
                sb.IntegratedSecurity = true;

                using (var conn = new SqlConnection(sb.ConnectionString))
                {
                    conn.Open();
                    using (var reader = new SqlCommand("SELECT * FROM Files;", conn).ExecuteReader())
                    {
                        if (reader.HasRows)
                        {
                            while (reader.Read())
                            {
                                using (var fs = new FileStream(workingDir + reader.GetString(1), FileMode.Create, FileAccess.Write))
                                {
                                    var bytes = reader.GetSqlBytes(3);
                                    fs.Write(bytes.Buffer, 0, (int)bytes.Length);
                                }
                            }
                        }
                    }
                }
                
                VissimSingleton.Instance.LoadNet(workingDir + netFileName);
                VissimSingleton.Instance.LoadLayout(workingDir + "vissim.ini");
            }
            catch (Exception ex)
            {
                MessageBox.Show(this, ex.Message, ex.GetType().ToString(), MessageBoxButtons.OK, MessageBoxIcon.Error);
            }
        }
开发者ID:A-n-d-r-e-y,项目名称:VISLAB,代码行数:48,代码来源:TestForm.cs


注:本文中的System.Data.SqlClient.SqlCommand.GetSqlBytes方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。