【发布时间】:2014-02-06 15:59:18
【问题描述】:
我正在尝试在 VB 中显示来自数据库的登录用户余额。但是,一旦我单击 Check Balance 按钮,它就会产生错误Conversion from string "Your balance is " to type 'Double' is not valid。
我尝试了不同的方法将它从字符串转换为双精度,我想可能是因为我将 m_decBalance 声明为小数,但这并没有改变任何东西。谁能帮我?这是我的代码:
Imports MySql.Data
Imports MySql.Data.MySqlClient
Public Class Form1
Dim dbCon As MySqlConnection
Dim strQuery As String = ""
Dim SQLcmd As MySqlCommand
Dim DataReader As MySqlDataReader
Private m_strPass As String
Private m_decBalance As Decimal
Private m_strName As String
Private m_strUserPass As String
Private m_strCardNumber As String
Private Sub Button2_Click(sender As Object, e As EventArgs) Handles btnLogin.Click
'Assign users guessed password to variable
m_strUserPass = txtPass.Text
'Invoke
RetrieveAccountInformation()
' determine if Password is correct or not
If m_strUserPass = m_strPass Then
lblWelcome.Visible = True
lblWelcome.Text = "Welcome" + " " + m_strName
txtPass.Enabled = False
btnBalance.Enabled = True
Else
' indicate that incorrect password was provided
lblWelcome.Visible = True
lblWelcome.Text = "Sorry, Password is incorrect." _
& "Please retry ."
' clear user's previous PIN entry
m_strUserPass = ""
End If
txtPass.Clear() ' clear TextBox
End Sub
' load application Form
Private Sub Form1_Load(sender As System.Object, e As System.EventArgs) Handles MyBase.Load
'Prepare connection and query
Try
dbCon = New MySqlConnection("Server=localhost;Database=test;Uid=root;Pwd=mysql")
strQuery = "SELECT CardNumber " &
"FROM Account"
SQLcmd = New MySqlCommand(strQuery, dbCon)
'Open the connection
dbCon.Open()
' create database reader to read information from database
DataReader = SQLcmd.ExecuteReader
' fill ComboBox with account numbers
While DataReader.Read()
cboAccountNumbers.Items.Add(DataReader("CardNumber"))
End While
'Close the connection
DataReader.Close()
dbCon.Close()
Catch ex As Exception
'Output error message to user with explaination of error
MsgBox("Failure to communicate" & vbCrLf & vbCrLf & ex.Message)
End Try
End Sub
' invoke when user provides account number
Private Sub RetrieveAccountInformation()
' specify account number of record from which data will be retrieved
dbCon = New MySqlConnection("Server=localhost;Database=test;Uid=root;Pwd=mysql")
strQuery = "SELECT Name, Balance, Password " &
"FROM Account WHERE CardNumber='" & Val(cboAccountNumbers.Text) & "' "
SQLcmd = New MySqlCommand(strQuery, dbCon)
dbCon.Open() ' open database connection
' create database reader to read information from database
DataReader = SQLcmd.ExecuteReader
DataReader.Read() ' open data reader connection
' retrieve Password number, balance amount and name information from database
m_strPass = Convert.ToString(DataReader("Password"))
m_decBalance = Convert.ToString(DataReader("Balance"))
m_strName = Convert.ToString(DataReader("Name"))
DataReader.Close() ' close data reader connection
dbCon.Close() ' close database connection
End Sub ' RetrieveAccountInformation
Private Sub btnBalance_Click(sender As Object, e As EventArgs) Handles btnBalance.Click
'Retrieve their account information
RetrieveAccountInformation()
Try
MsgBox("You balance is " + " " + m_decBalance)
Catch ex As Exception
MsgBox(ex.Message)
End Try
End Sub
End Class
【问题讨论】:
-
在我的数据库中,
Balance是一个整数,它的值为 200。我需要在数据库中将其更改为双精度数还是什么? -
@user3275784 根据您的错误,该问题与数据库无关(请参阅我下面的帖子)。您可以将
Balance列保留为整数(除非您需要在数据库中存储双精度)
标签: mysql vb.net string double type-conversion