i've linked the database correctly,
but i can't view the value after i drag the table from data source, and my database already saved data.
why? :(
gahhon 13 Junior Poster
Recommended Answers
Jump to PostWhen you run the project in debug mode (or normally if you have set exceptions) what error messages do you get (if any)? If you get an error it will tell you if it is caused by the connection to the database or something else.
Jump to PostAdding to a database is similar to what you have above except you have an INSERT or UPDATE statement as your SQL statement. SO, create a database connection object with a valid connection string, create a command object passing in the parameters of your SQL statement and the connection. Then …
Jump to PostDifferent inserts of new data are handled as different SQL statements. Set the statement to be the first insert and run it, then repeat until all tables that need to be updated have been. Now to do this properly you will want to look into database transactions. You can open …
Jump to PostYou can set up your 3 statements as you have done and then do this:
Dim transaction As OleDbTransaction = conn.BeginTransaction() Try Dim orderComman As New OleDb.OleDbCommand(sqlInsertOrder, connectionDatabase) Dim productCommand As New OleDb.OleDbCommand(sqlInsertProduct, connectionDatabase) Dim orderProductCommand As New OleDb.OleDbCommand(sqlInsertOrderProduct, connectionDatabase) conn.Open() orderComman.ExecuteNonQuery() productCommand.ExecuteNonQuery() orderProductCommand.ExecuteNonQuery() transaction.Commit() conn.Close() Catch …
Jump to PostSorry, you've confused me. Are you saying that if you don't use ExecuteNonQuery the data is inserted but when you do use it you have an error? When you say that the result is added successfully the code simply ran without errors or that you can actually see the data …
All 26 Replies
poojavb 29 Junior Poster
gahhon 13 Junior Poster
hericles 289 Master Poster Featured Poster
gahhon 13 Junior Poster
gahhon 13 Junior Poster
gahhon 13 Junior Poster
poojavb 29 Junior Poster
gahhon 13 Junior Poster
hericles 289 Master Poster Featured Poster
kRod 49 Junior Poster
gahhon 13 Junior Poster
hericles 289 Master Poster Featured Poster
gahhon 13 Junior Poster
poojavb 29 Junior Poster
gahhon 13 Junior Poster
hericles 289 Master Poster Featured Poster
gahhon 13 Junior Poster
gahhon 13 Junior Poster
gahhon 13 Junior Poster
hericles 289 Master Poster Featured Poster
gahhon 13 Junior Poster
hericles 289 Master Poster Featured Poster
gahhon 13 Junior Poster
kRod 49 Junior Poster
jezguitarist30 0 Light Poster
gahhon 13 Junior Poster
Be a part of the DaniWeb community
We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.