zoukankan      html  css  js  c++  java
  • C#中从数据库导出至txt

    用'|'隔开

    using System;
    using System.Collections.Generic;
    using System.ComponentModel;
    using System.Data;
    using System.Drawing;
    using System.Linq;
    using System.Text;
    using System.Windows.Forms;
    using System.IO;
    using System.Data.SqlClient;

    namespace 导出数据库表至txt
    {
        public partial class Form1 : Form
        {
            public Form1()
            {
                InitializeComponent();
            }

            private void button1_Click(object sender, EventArgs e)
            {
                if (sfd.ShowDialog() == DialogResult.OK)
                {
                    using (FileStream fstream = File.OpenWrite(sfd.FileName))
                    {
                        StreamWriter sw = new StreamWriter(fstream, System.Text.Encoding.GetEncoding("GB2312"));
                        
                        using (SqlConnection conn = new SqlConnection("server=.;database=test;user id=sa;password=123456"))
                        {
                            conn.Open();
                         
                            using (SqlCommand cmd = conn.CreateCommand())
                            {
                                cmd.CommandText = "select * from T_persons";
                                using (SqlDataReader reader=cmd.ExecuteReader())
                                {
                                    while (reader.Read())
                                    {
                                        string name = reader.GetString(reader.GetOrdinal("name"));
                                        int age = reader.GetInt32(reader.GetOrdinal("age"));
                                        sw.WriteLine(name + "|" + age);

                                    }
                                    sw.Flush();
                                }

                            }
                        }
                        MessageBox.Show("数据导出成功!");
                    }
                }
            }

          
        }
    }

  • 相关阅读:
    @+id/和android:id的区别
    android.intent.action.MAIN 与 android.intent.category.LAUNCHER 的验证理解
    jQuery对象与dom对象相互转换
    javascript中apply和eval结合的强大用法
    公司项目学习杂烩
    c#(winform,webform通用)利用npoi将xls文件复制为xlsx文件(excel的修改,保存,包括excel2003-office2007+的处理)
    uploadfiy使用
    我都学了些什么
    给编程一个你热爱它的机会
    野心不能成就你,热爱却可以
  • 原文地址:https://www.cnblogs.com/agile2011/p/2058987.html
Copyright © 2011-2022 走看看