我試圖在VB中顯示從數據庫登錄的用戶餘額。但是,一旦我點擊檢查平衡按鈕,它會產生錯誤Conversion from string "Your balance is " to type 'Double' is not valid
。「從字符串轉換爲Double類型無效」錯誤VB.NET
我已經嘗試不同的方式從一個字符串到雙轉換,我想也許這是因爲我有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
@ user3275784從您的錯誤中,問題與數據庫無關(請參閱下面的我的帖子)。您可以將「Balance」列保留爲整數(除非您需要在數據庫中存儲雙倍數) – Grahamvs