| | |
SQL UPDATE Error
Please support our VB.NET advertiser: Intel Parallel Studio Home
![]() |
•
•
Join Date: Jun 2007
Posts: 26
Reputation:
Solved Threads: 0
Hi
I have the following code which generates an error 'Data Type mismatch in criteria expression'
The purpose of the code is to write a value to a database at a specific row.
I have the following code which generates an error 'Data Type mismatch in criteria expression'
The purpose of the code is to write a value to a database at a specific row.
VB.NET Syntax (Toggle Plain Text)
Dim IntSid As String Dim Sid As String Dim I As Integer IntSid = Me.TTIn.Text Sid = Me.SessionIDTextBox.Text I = CInt(Val(Sid)) Dim loSQL = "UPDATE tblSession SET TTout = '" & _ IntSid & "' WHERE SessionId = '" & _ I & " ' "
•
•
Join Date: Jun 2007
Posts: 26
Reputation:
Solved Threads: 0
Hi
I got it to work the problem was the single quote around the variable I which is an Integer and not a String
My original SQL statement was
This should have been
ViRi
I got it to work the problem was the single quote around the variable I which is an Integer and not a String
My original SQL statement was
VB.NET Syntax (Toggle Plain Text)
Dim loSQL = "UPDATE tblSession SET TTout = '" & _ IntSid & "' WHERE SessionId = '" & _ I & " ' "
This should have been
VB.NET Syntax (Toggle Plain Text)
Dim loSQL = "UPDATE tblSession SET TTout = '" & _ Me.TTIn.Text & "'WHERE SessionId = " & _ I & " "
ViRi
![]() |
Similar Threads
- automatic update error?? (Windows NT / 2000 / XP)
- windows update error (Windows NT / 2000 / XP)
- $rs=mysql_query($sql) or die("error in common.inc.php at line 257"); (PHP)
- ADO.Net SQL UPDATE using OleDBAdapter (C#)
- SQL server error: 18452 - connection to SQL error (Windows NT / 2000 / XP)
Other Threads in the VB.NET Forum
- Previous Thread: load data from access database into form
- Next Thread: Doubt
| Thread Tools | Search this Thread |
"crystal .net .net2008 2008 access add advanced application array assignment basic beginner box browser button buttons center click code combo convert cpu cuesent data database datagrid datagridview datetimepicker designer dissertation dissertations dissertationtopic dosconsolevb.net editvb.net employees excel exists firewall forms html images isnumericfuntioncall listview map math memory mobile module msaccess mssqlbackend mysql navigate net number opacity open pan pdf picturebox picturebox2 port position print printpreview record regex reuse right-to-left save search serial settings socket sorting sqldatbase sqlserver storedprocedure temp textbox timer timespan transparency txttoxmlconverter useraccounts usercontol vb vb.net vb.nettoolboxvisualbasic2008sidebar vba vbnet vista visual visualbasic visualbasic.net visualstudio.net web wpf wrapingcode xml year






