Click here to Skip to main content
15,887,256 members
Home / Discussions / .NET (Core and Framework)
   

.NET (Core and Framework)

 
GeneralRe: Saving to DataBase Pin
Member 1038849412-Nov-13 2:34
Member 1038849412-Nov-13 2:34 
AnswerRe: Saving to DataBase Pin
Member 1038849412-Nov-13 2:35
Member 1038849412-Nov-13 2:35 
SuggestionRe: Saving to DataBase Pin
Richard Deeming12-Nov-13 2:59
mveRichard Deeming12-Nov-13 2:59 
QuestionRe: Saving to DataBase Pin
Eddy Vluggen12-Nov-13 9:00
professionalEddy Vluggen12-Nov-13 9:00 
AnswerRe: Saving to DataBase Pin
Richard Deeming12-Nov-13 9:08
mveRichard Deeming12-Nov-13 9:08 
GeneralRe: Saving to DataBase Pin
Eddy Vluggen12-Nov-13 9:09
professionalEddy Vluggen12-Nov-13 9:09 
GeneralRe: Saving to DataBase Pin
Richard Deeming12-Nov-13 9:19
mveRichard Deeming12-Nov-13 9:19 
GeneralRe: Saving to DataBase Pin
Member 1038849412-Nov-13 21:28
Member 1038849412-Nov-13 21:28 
Hello again.
Quote:
Private Sub btnSave_Click(sender As Object, e As EventArgs) Handles btnSave.Click
Dim strconnection As String = "Data Source=ELIANE-VAIO\SQLEXPRESS;Initial Catalog=SchoolDB;Integrated Security=True;"
Dim _cn As SqlConnection = New SqlConnection(strconnection)
_cn.Open()
Dim cmd As New SqlCommand
cmd.CommandText = "INSERT INTO StudentInfo([Code], [Full-Name], [Position], [Title], [Phone-Number], [Address], [Date-Time]) VALUES (@Code, @Name, @Position, @Title, @PhoneNumber, @Address, @DateTime);"
cmd.Parameters.AddWithValue("@Code", Form1.txtCode.Text)
cmd.Parameters.AddWithValue("@Name", Form1.txtName.Text)
cmd.Parameters.AddWithValue("@Position", Form1.cmbPosition.Text)
cmd.Parameters.AddWithValue("@Title", Form1.cmbTitle.Text)
cmd.Parameters.AddWithValue("@PhoneNumber", Form1.txtPhoneNumber.Text)
cmd.Parameters.AddWithValue("@Address", Form1.txtAddress.Text)
cmd.Parameters.AddWithValue("@DateTime", Form1.DateTimePicker1.Value)
Dim cmd1 As New SqlCommand
cmd1.CommandText = "select * from StudentInfo"
MsgBox(cmd1.CommandText.ToString)

_cn.Close()

End Sub



Hello again. The code won't give me any errors. But how can i view the newly inserted record in my database (SQl) ??
Thank you Smile | :)
GeneralRe: Saving to DataBase Pin
Richard Deeming13-Nov-13 2:27
mveRichard Deeming13-Nov-13 2:27 
GeneralMessage Closed Pin
13-Nov-13 2:41
Member 1038849413-Nov-13 2:41 
GeneralRe: Saving to DataBase (solved) Pin
Richard Deeming13-Nov-13 2:51
mveRichard Deeming13-Nov-13 2:51 
GeneralRe: Saving to DataBase (solved) Pin
Member 1038849413-Nov-13 3:03
Member 1038849413-Nov-13 3:03 
GeneralRe: Saving to DataBase (solved) Pin
Richard Deeming13-Nov-13 3:13
mveRichard Deeming13-Nov-13 3:13 
GeneralRe: Saving to DataBase (solved) Pin
Member 1038849413-Nov-13 3:21
Member 1038849413-Nov-13 3:21 
QuestionRe: Saving to DataBase Pin
Eddy Vluggen12-Nov-13 9:08
professionalEddy Vluggen12-Nov-13 9:08 
AnswerRe: Saving to DataBase Pin
Pete O'Hanlon12-Nov-13 9:14
mvePete O'Hanlon12-Nov-13 9:14 
QuestionRadioButton Pin
Member 103884948-Nov-13 0:03
Member 103884948-Nov-13 0:03 
AnswerRe: RadioButton Pin
Marco Bertschi8-Nov-13 0:15
protectorMarco Bertschi8-Nov-13 0:15 
AnswerRe: RadioButton Pin
Simon_Whale8-Nov-13 0:22
Simon_Whale8-Nov-13 0:22 
QuestionEntity Framework storedprocedure (Value insert) mapping with Entity attribute also need an external attribute (this is required to be input parameter) Pin
ansari81@yahoo.com7-Nov-13 2:28
professionalansari81@yahoo.com7-Nov-13 2:28 
QuestionPowerPivot Pin
ThetaClear5-Nov-13 10:21
ThetaClear5-Nov-13 10:21 
AnswerRe: PowerPivot Pin
Abhinav S5-Nov-13 17:43
Abhinav S5-Nov-13 17:43 
GeneralRe: PowerPivot Pin
ThetaClear5-Nov-13 20:19
ThetaClear5-Nov-13 20:19 
Questionnew features in 2012 as compared to 2008 and 2010 Pin
SateeshVankayala4-Nov-13 0:57
SateeshVankayala4-Nov-13 0:57 
AnswerRe: new features in 2012 as compared to 2008 and 2010 Pin
thatraja4-Nov-13 1:21
professionalthatraja4-Nov-13 1:21 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.