Register Register Member Login Member Login Member Login Forgot Password ??
PHP , ASP , ASP.NET, VB.NET, C#, Java , jQuery , Android , iOS , Windows Phone
 

Registered : 109,037

HOME > .NET Framework > Forum > error คะ รบกวนดูให้หน่อยนะคะ มันขึ้น error แบบนี้อ่ะคะ เป็น web app ใช้ visual studio 2008 กับ my sql



 

error คะ รบกวนดูให้หน่อยนะคะ มันขึ้น error แบบนี้อ่ะคะ เป็น web app ใช้ visual studio 2008 กับ my sql

 



Topic : 043335

Guest




มันขึ้น error แบบนี้อ่ะคะ เป็น web app ใช้ visual studio2008 กับ my sql

There is already an open DataReader associated with this Connection which must be closed first.
Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.

Exception Details: MySql.Data.MySqlClient.MySqlException: There is already an open DataReader associated with this Connection which must be closed first.

มันต้องแก้ยังไงอ่ะคะ



Tag : - - - -







Move To Hilight (Stock) 
Send To Friend.Bookmark.
Date : 2010-05-26 13:29:01 By : ^^ View : 1547 Reply : 11
 

 

No. 1



โพสกระทู้ ( 869 )
บทความ ( 2 )

สมาชิกที่ใส่เสื้อไทยครีเอท

สถานะออฟไลน์


ลองเช็ค ค่าใน primary key ว่าข้อมูลซ้ำกับที่จะ add ไหม

ปล. มั่วๆ นะ






Date : 2010-05-26 14:05:16 By : onedan
 


 

No. 2

Guest


คือว่า เขียนsql ดึงข้อมูลมาแสดงในกริดวิว เฉยๆอ่ะคะ ไม่เข้าใจเหมือนกันว่าทำไมไม่ขึ้น มีjoin 2ตารางเอง
Date : 2010-05-26 14:07:47 By : ^^
 

 

No. 3



โพสกระทู้ ( 168 )
บทความ ( 0 )



สถานะออฟไลน์


อย่าลืม ปิด ก่อนนะครับ ก่อน ที่จะ สั่งเปิด connection อีกครัง
เช่น หลังจากได้ ข้อมูลจาก data base มาแล้ว ต้องปิด data reader นะครับ

Code (VB.NET)
Dim objConn As System.Data.OleDb.OleDbConnection 
Dim objCmd As System.Data.OleDb.OleDbCommand 
Dim strConnString As String
strConnString = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source="&Server.MapPath("database/mydatabase.mdb")&";Jet OLEDB:Database Password=;"
objConn = New System.Data.OleDb.OleDbConnection(strConnString) 
objConn.Open() 
Dim strSQL As String
strSQL = "SELECT * FROM customer"
Dim dtReader As System.Data.OleDb.OleDbDataReader 
objCmd = New System.Data.OleDb.OleDbCommand(strSQL, objConn) 
dtReader = objCmd.ExecuteReader()  
 
'*** DataReader ***' 
dtReader.Close() 
dtReader = Nothing
objConn.Close() 
objConn = Nothing

Date : 2010-05-26 14:54:50 By : msorawich
 


 

No. 4

Guest


เขียน sql ไปแค่รอบเดียวเองอ่ะคะ ก็ไม่ขึ้นซะแล้ว เนี้ย!คะ เขียนไปแค่นี้เอง

Code (VB.NET)
Protected Sub Button1_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles Button1.Click
        Dim ConnString = "Server=192.168.10.88;database=pt;UID=root;"
        Dim Conn = New MySqlConnection(ConnString)
        Conn.Open()
        Dim dtAdapter As New MySqlDataAdapter
        Dim ds As New Data.DataSet

        Dim t1 = TextBox1.Text & " 00:00:00 "
        Dim t2 = TextBox2.Text & " 00:00:00 "
        Dim SQL = "select  ecode,em_name,em_name2,indate,shift,time0,time1,time2, time3, time4, time5, time6, time7, tin, tbout, tbin, tout from shifttime,emper  where(substring(em_code, 1, 7) = ecode) and indate between 't1' and  't2' and ebranch = '" & TextBox3.Text & "' order by indate,ecode "
        Dim Cmd = New MySqlCommand(SQL, Conn)
        Dim dtreader = Cmd.ExecuteReader()
        dtAdapter.SelectCommand = Cmd 'Adapter เป็นตัวเชื่อมระหว่างฐานข้อมูลกับตัวระบบ
        dtAdapter.Fill(ds) 'เป็นการรันsql
        GridView1.DataSource = ds
        GridView1.DataBind()
        dtreader.Close()
        dtreader = Nothing
    End Sub
End Class

Date : 2010-05-26 15:03:16 By : ^^
 


 

No. 5

Guest


ไม่มีใครทราบเลยหรอคะ ช่วยหน่อยนะคะ
Date : 2010-05-27 09:18:55 By : ^^
 


 

No. 6



โพสกระทู้ ( 3,144 )
บทความ ( 1 )

สมาชิกที่ใส่เสื้อไทยครีเอท

สถานะออฟไลน์


Quote:
There is already an open DataReader associated with this Connection which must be closed first.


ไม่เคยใช้ class mysqlclient ซะด้วย แต่เดาว่าคงเหมือนกับ sqlclient

Code (VB.NET)
Protected Sub Button1_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles Button1.Click
        Dim ConnString = "Server=192.168.10.88;database=pt;UID=root;"
        Dim Conn = New MySqlConnection(ConnString)

        If Conn.State = ConnectionState.Open Then
             Conn.Close()
        End If

        Conn.Open()
        Dim dtAdapter As New MySqlDataAdapter
        Dim ds As New Data.DataSet

        Dim t1 = TextBox1.Text & " 00:00:00 "
        Dim t2 = TextBox2.Text & " 00:00:00 "
        Dim SQL = "select  ecode,em_name,em_name2,indate,shift,time0,time1,time2, time3, time4, time5, time6, time7, tin, tbout, tbin, tout from shifttime,emper  where(substring(em_code, 1, 7) = ecode) and indate between 't1' and  't2' and ebranch = '" & TextBox3.Text & "' order by indate,ecode "
        Dim Cmd = New MySqlCommand(SQL, Conn)
        Dim dtreader = Cmd.ExecuteReader()
        dtAdapter.SelectCommand = Cmd 'Adapter เป็นตัวเชื่อมระหว่างฐานข้อมูลกับตัวระบบ
        dtAdapter.Fill(ds) 'เป็นการรันsql
        GridView1.DataSource = ds
        GridView1.DataBind()
        dtreader.Close()
        dtreader = Nothing
    End Sub
End Class


Date : 2010-05-27 09:41:46 By : tungman
 


 

No. 7

Guest


error เหมือนเดิมเลยคะ
Date : 2010-05-27 10:21:58 By : ^^
 


 

No. 8



โพสกระทู้ ( 3,144 )
บทความ ( 1 )

สมาชิกที่ใส่เสื้อไทยครีเอท

สถานะออฟไลน์


อืมรู้แระ เจอคนหลายใจนี่เอง ต้องเลือกเอาสักอย่างสิ จะ connectionless หรือ connection

อันนี้แบบ connection
Protected Sub Button1_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles Button1.Click
        Dim ConnString = "Server=192.168.10.88;database=pt;UID=root;"
        Dim Conn = New MySqlConnection(ConnString)

        If Conn.State = ConnectionState.Open Then
             Conn.Close()
        End If

        Conn.Open()
        Dim ds As New Data.DataSet

        Dim t1 = TextBox1.Text & " 00:00:00 "
        Dim t2 = TextBox2.Text & " 00:00:00 "
        Dim SQL = "select  ecode,em_name,em_name2,indate,shift,time0,time1,time2, time3, time4, time5, time6, time7, tin, tbout, tbin, tout from shifttime,emper  where(substring(em_code, 1, 7) = ecode) and indate between 't1' and  't2' and ebranch = '" & TextBox3.Text & "' order by indate,ecode "
        Dim Cmd = New MySqlCommand(SQL, Conn)
        Dim dtreader = Cmd.ExecuteReader()

        GridView1.DataSource = dtreader
        GridView1.DataBind()
        dtreader.Close()
        dtreader = Nothing
    End Sub
End Class

แบบ connectionless
Protected Sub Button1_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles Button1.Click
        Dim ConnString = "Server=192.168.10.88;database=pt;UID=root;"
        Dim Conn = New MySqlConnection(ConnString)

        Dim dtAdapter As New MySqlDataAdapter
        Dim ds As New Data.DataSet

        Dim t1 = TextBox1.Text & " 00:00:00 "
        Dim t2 = TextBox2.Text & " 00:00:00 "
        Dim SQL = "select  ecode,em_name,em_name2,indate,shift,time0,time1,time2, time3, time4, time5, time6, time7, tin, tbout, tbin, tout from shifttime,emper  where(substring(em_code, 1, 7) = ecode) and indate between 't1' and  't2' and ebranch = '" & TextBox3.Text & "' order by indate,ecode "
        Dim Cmd = New MySqlCommand(SQL, Conn)
        dtAdapter.SelectCommand = Cmd 'Adapter เป็นตัวเชื่อมระหว่างฐานข้อมูลกับตัวระบบ
        dtAdapter.Fill(ds) 'เป็นการรันsql
        GridView1.DataSource = ds
        GridView1.DataBind()
    End Sub
End Class

Date : 2010-05-27 10:27:48 By : tungman
 


 

No. 9

Guest


เอาแบบ2อ่ะคะ แต่ทำไมข้อมูลมันไม่มาอ่ะคะ มันมีอะไรหายไปป่าว แล้วไม่ต้องเปิด conn หรอคะ
Date : 2010-05-27 10:38:11 By : ^^
 


 

No. 10



โพสกระทู้ ( 3,144 )
บทความ ( 1 )

สมาชิกที่ใส่เสื้อไทยครีเอท

สถานะออฟไลน์


ก็บอกว่า connection less แล้วจะเปิด connection เพื่ออะไรล่ะครับ

ส่วนไม่มี data ลองตรวจเงื่อนไข where ดูดีๆ ครับ
Date : 2010-05-27 10:54:15 By : tungman
 


 

No. 11

Guest


มันแสดงข้อมูลแล้วแหละคะ พอดีว่าใน mysql มันไม่ต้องใส่เวลา ใส่แค่วันที่พอ
แต่ทำไมพอดึงข้อมูลมาหน้าเว็บมันไม่แสดงภาษาไทย ก็ไม่รู้อ่ะคะ พี่พอจะทราบวิธีไหมคะ
Date : 2010-05-27 11:20:49 By : ^^
 

   

ค้นหาข้อมูล


   
 

แสดงความคิดเห็น
Re : error คะ รบกวนดูให้หน่อยนะคะ มันขึ้น error แบบนี้อ่ะคะ เป็น web app ใช้ visual studio 2008 กับ my sql
 
 
รายละเอียด
 
ตัวหนา ตัวเอียง ตัวขีดเส้นใต้ ตัวมีขีดกลาง| ตัวเรืองแสง ตัวมีเงา ตัวอักษรวิ่ง| จัดย่อหน้าอิสระ จัดย่อหน้าชิดซ้าย จัดย่อหน้ากึ่งกลาง จัดย่อหน้าชิดขวา| เส้นขวาง| ขนาดตัวอักษร แบบตัวอักษร
ใส่แฟลช ใส่รูป ใส่ไฮเปอร์ลิ้งค์ ใส่อีเมล์ ใส่ลิ้งค์ FTP| ใส่แถวของตาราง ใส่คอลัมน์ตาราง| ตัวยก ตัวห้อย ตัวพิมพ์ดีด| ใส่โค้ด ใส่การอ้างถึงคำพูด| ใส่ลีสต์
smiley for :lol: smiley for :ken: smiley for :D smiley for :) smiley for ;) smiley for :eek: smiley for :geek: smiley for :roll: smiley for :erm: smiley for :cool: smiley for :blank: smiley for :idea: smiley for :ehh: smiley for :aargh: smiley for :evil:
Insert PHP Code
Insert ASP Code
Insert VB.NET Code Insert C#.NET Code Insert JavaScript Code Insert C#.NET Code
Insert Java Code
Insert Android Code
Insert Objective-C Code
Insert XML Code
Insert SQL Code
Insert Code
เพื่อความเรียบร้อยของข้อความ ควรจัดรูปแบบให้พอดีกับขนาดของหน้าจอ เพื่อง่ายต่อการอ่านและสบายตา และตรวจสอบภาษาไทยให้ถูกต้อง

อัพโหลดแทรกรูปภาพ

Notice

เพื่อความปลอดภัยของเว็บบอร์ด ไม่อนุญาติให้แทรก แท็ก [img]....[/img] โดยการอัพโหลดไฟล์รูปจากที่อื่น เช่นเว็บไซต์ ฟรีอัพโหลดต่าง ๆ
อัพโหลดแทรกรูปภาพ ให้ใช้บริการอัพโหลดไฟล์ของไทยครีเอท และตัดรูปภาพให้พอดีกับสกรีน เพื่อความโหลดเร็วและไฟล์ไม่ถูกลบทิ้ง

   
  เพื่อความปลอดภัยและการตรวจสอบ กระทู้ที่แทรกไฟล์อัพโหลดไฟล์จากที่อื่น อาจจะถูกลบทิ้ง
 
โดย
อีเมล์
บวกค่าให้ถูก
<= ตัวเลขฮินดูอารบิก เช่น 123 (หรือล็อกอินเข้าระบบสมาชิกเพื่อไม่ต้องกรอก)







Exchange: นำเข้าสินค้าจากจีน, Taobao, เฟอร์นิเจอร์, ของพรีเมี่ยม, ร่ม, ปากกา, power bank, แฟลชไดร์ฟ, กระบอกน้ำ

Load balance : Server 01
ThaiCreate.Com Logo
© www.ThaiCreate.Com. 2003-2024 All Rights Reserved.
ไทยครีเอทบริการ จัดทำดูแลแก้ไข Web Application ทุกรูปแบบ (PHP, .Net Application, VB.Net, C#)
[Conditions Privacy Statement] ติดต่อโฆษณา 081-987-6107 อัตราราคา คลิกที่นี่