|
|
|
การเซฟข้อมูลเป็น txt ไฟล์และอ่านข้อมูลจาก txt ไฟล์เพื่อเอาไปเซฟลงดาต้าเบส |
|
|
|
|
|
|
|
strConnString = "Provider=Microsoft.Jet.OLEDB.4.0; Data Source=" + Server.MapPath(strPath) +
032.";Extended Properties='TEXT;HDR=Yes;FMT=Delimited;Format=Delimited(,)'";
ตรงของผมเป็น mysql 2005 ก็ไม่ต้องสนใจใช่ไหม เพราะ OLEDB มันของ access
|
|
|
|
|
Date :
2011-04-12 16:25:37 |
By :
ekanan |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ตกลง mssql หรือ mysql ละครับเนี่ยมี ทั้ง mysql มีทั้ง2005 งงเลย
ถ้าใช้ mssql ก็ใช้ connect string ของ mssql ซิครับ
|
|
|
|
|
Date :
2011-04-12 23:43:43 |
By :
hamzter |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
แล้วมี ตัวอย่าง จาก database ไป txt ไฟล์ไหมครับ
|
|
|
|
|
Date :
2011-04-18 13:58:22 |
By :
ekanan |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Import CSV to Database
มันใช้ไม่ได้ อะครับ พอเป็น txt ข้อมูล มันติดๆๆ กัน
csv มัน , เป็นตัวคั้นข้อมูล
แต่ txt ผม ใช้ tab เป็นตัวคั่นอะครับลองๆ แก้แล้วก็ไม่ได้อะครับ
|
|
|
|
|
Date :
2011-04-20 11:20:49 |
By :
ekanan |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
เป็น tab เหรอ
strConnString = "Provider=Microsoft.Jet.OLEDB.4.0; Data Source=" + Server.MapPath(strPath) +
032.";Extended Properties='TEXT;HDR=Yes;FMT=Delimited;Format=Delimited(,)'"
เห็นอะไรใน connection string นี่ไหม อิอิ
ตรง Extended Properties อ่ะ
|
|
|
|
|
Date :
2011-04-20 11:47:43 |
By :
--------- |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
อืม ผิดๆ
ตรง Format ต่างหาก
|
|
|
|
|
Date :
2011-04-20 11:53:38 |
By :
--------- |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ตอบความคิดเห็นที่ : 4 เขียนโดย : ekanan เมื่อวันที่ 2011-04-18 13:58:22
รายละเอียดของการตอบ ::
อันนี้ไป CSV ครับ หรือจะไป Text ก็เหมือนกันครับ
Code (VB.NET)
<%@ Import Namespace="System.IO"%>
<%@ Page Language="VB" %>
<script runat="server">
Sub Page_Load(sender As Object, e As EventArgs)
Dim StrWer As StreamWriter
StrWer = New StreamWriter(Server.MapPath("csv/") & "customer.csv", True)
'*** Write Record ***'
StrWer.WriteLine("C005,Weerachai Nukitram,[email protected],TH,2000000,100000")
StrWer.WriteLine("C006,Surachai Sirisart,[email protected],TH,1000000,200000")
'*** Write Record (End) ***'
StrWer.Close()
Me.lblText.Text = "CSV Writed. <a href=csv/customer.csv>Click here</a>"
End Sub
</script>
<html>
<head>
<title>ThaiCreate.Com ASP.NET - CSV</title>
</head>
<body>
<form id="form1" runat="server">
<asp:Label id="lblText" runat="server"></asp:Label>
</form>
</body>
</html>
Go to : ASP.NET Write/Export to CSV file
|
|
|
|
|
Date :
2011-04-20 13:21:19 |
By :
webmaster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
strConnString = "Provider=Microsoft.Jet.OLEDB.4.0; Data Source=" + Server.MapPath(strPath) +
";Extended Properties='TEXT;HDR=Yes;FMT=Delimited;Format=TabDelimited'";
ก็ไม่ได้เลยอะครับมันยังติดๆ กันอยู่เลย
|
|
|
|
|
Date :
2011-04-22 10:06:06 |
By :
ekanan |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ในรูปมันบอกอะไรอ่ะ ดูแล้วงง
ติดกันยังไง ก็เห็นมีอยู่ฟิลเดียว
|
|
|
|
|
Date :
2011-04-22 11:39:34 |
By :
--------- |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ไม่ติดครับ สังเกตุดีดีครับ หัวตารางมันก็ไปรวมกันหมด
มันเอา ที่ tab มารวมเป็น ข้อความเดียวกันหมดภายในบรรทัดไงครับ
นี่คือไฟล์อัพเข้าไปแล้วเป็นแบบข้างบนอะครับ ใครพอทราบเทคหรือวิธีแก้บ้าง
|
ประวัติการแก้ไข 2011-04-22 13:42:02
|
|
|
|
Date :
2011-04-22 12:31:48 |
By :
ekanan |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ไม่มีใครมาตอบเลยเงอ
|
|
|
|
|
Date :
2011-04-25 12:51:48 |
By :
ekanan |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
มาช่วยสดงความคิดเห็นทีี่ครับ
|
|
|
|
|
Date :
2011-05-03 13:56:50 |
By :
ekanan |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 05
|