|
|
|
พี่ครับผม import ข้อมูล csv เข้าไปแล้วมันกลายภาษาต่างดาวไปอ่ะครับ |
|
|
|
|
|
|
|
ผมลองโค้ด import จากไฟล์ csv เข้าดาต้าเบสแล้วมันกลายเป็นต่างดาวไปอ่ะครับ
แต่ในหน้าตัวโค้ด ผมresponse.writeออกมามันเป็นภาษาไทย แต่พอเข้าฐานปุปกลายเป็นต่างดาวไปเลยอ่ะ
Code (ASP)
<%Option Explicit
%>
<html>
<head>
<title>ThaiCreate.Com ASP & Import CSV To Access</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
</head>
<body>
<%
Dim objFSO,oInStream,sRows,arrRows
Dim Conn,strSQL,objExec
Dim sFileName
sFileName = "officer2.csv"
'*** Create Object ***'
Set objFSO = CreateObject("Scripting.FileSystemObject")
'*** Check Exist Files ***'
If Not objFSO.FileExists(Server.MapPath(sFileName)) Then
Response.write("File not found.")
Else
'*** Open Files ***'
Set oInStream = objFSO.OpenTextFile(Server.MapPath(sFileName),1,False)
'*** open Connect to Access Database ***'
Set Conn = Server.Createobject("ADODB.Connection")
Conn.Open "DRIVER={MySQL ODBC 5.1 Driver}; SERVER=localhost; UID=root; pwd=admin; database=med; CHARSET=utf8;stmt=set names 'utf8';"
Do Until oInStream.AtEndOfStream
sRows = oInStream.readLine
arrRows = Split(sRows,",")
'*** Insert to table customer2 ***'
strSQL = ""
strSQL = strSQL &"INSERT INTO officer "
strSQL = strSQL &"(of_tname,of_name,of_tnameen,of_nameen) "
strSQL = strSQL &"VALUES "
strSQL = strSQL &"('"&arrRows(0)&"','"&arrRows(1)&"','"&arrRows(2)&"' "
strSQL = strSQL &",'"&arrRows(3)&"') "
Response.write (strSQL)
Set objExec = Conn.Execute(strSQL)
Set objExec = Nothing
Loop
oInStream.Close()
Conn.Close()
Set oInStream = Nothing
Set Conn = Nothing
End If
Response.write ("CSV Import to Access Done.")
%>
</table>
</body>
</html>
Tag : ASP, MySQL
|
|
|
|
|
|
Date :
2012-01-31 15:59:44 |
By :
Clamore |
View :
3192 |
Reply :
6 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (ASP)
Response.write (strSQL)
ตอนที่มันแสดงผลบนหน้าจอเป็นภาษาไทยหรือเปล่าครับ
|
|
|
|
|
Date :
2012-01-31 17:03:38 |
By :
webmaster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
เป็นครับ
แต่ใน database ไม่เป็น
|
|
|
|
|
Date :
2012-01-31 18:12:07 |
By :
Clamore |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ใน Database Collation เป็นอะไรครับ
|
|
|
|
|
Date :
2012-01-31 18:29:42 |
By :
webmaster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
utf-8 ครับผม
|
|
|
|
|
Date :
2012-01-31 19:10:40 |
By :
Clamore |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ได้ลองใส่แล้วครับ
Session.Codepage="65001"
กลายเป็นว่า ต่างดาวทั้งคู่เลยครับ ทั้งหน้าจอแสดงผล ทั้งดาต้าเบสเลยครับ
|
|
|
|
|
Date :
2012-01-31 20:43:51 |
By :
Clamore |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 01
|