| | |
SQL UPDATE Error
Please support our VB.NET advertiser: $4.95 a Month - ASP.NET Web Hosting – Click Here!
![]() |
•
•
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 .net2005 30minutes 2005 2008 access account add arithmetic array assignment basic box button buttons center check code component connectionstring convert cpu crystalreport data database databasesearch datagrid datagridview design dissertation dissertations dissertationthesis dosconsolevb.net dropdownlist editvb.net excel file-dialog firewall folder ftp generatetags hardcopy image images insert intel isnumericfuntioncall math monitor mssqlbackend mysql navigate net networking opacity output passingparameters peertopeervideostreaming picturebox1 port printpreview problem problemwithinstallation project record reports" reuse savedialog searchvb.net select serial storedprocedure string tcp temp text textbox timer toolbox trim updown user useraccounts usercontrol vb vb.net vb.netcode vb.netformclosing()eventpictureboxmessagebox vb.nettoolboxvisualbasic2008sidebar vb2008 vbnet view visual visualbasic visualbasic.net visualstudio visualstudio2008 web wpf






