c# - Dataset Binding stored procedures update/insert/delete -


I am currently having problems because DB has changed.

I am using a dataset for the C # application, and a user management system is for security issues, like our current DB design

  1. the app User login in
  2. DB returns a session ID
  3. On the use of any other stored procedures, the session ID must be specified.

However, DB does not request before session.

Since I am using a dataset, I updated / inserted / removed the stored procedures with the "table adapter configuration wizard". Force order for existing stored procedures (select stored procedures to call and specify any necessary parameters)

Now, it seems that I have been using sessions to delete / update / archive the operation ID must be specified. How do I specify session ID parameters here? It seems that I have to choose a return parameter variable with a select statement.

Yes you specify a session or GUID parameter to delete your / insert / stored processes. This will provide certain types of locking so that you can only update / delete the latest copy of your records. You must explicitly add sessions or GUID fields to tables. Abd Yes, every time you make changes to the underlying row in the database, you need to include an update or in that field.


Comments

Popular posts from this blog

windows - Heroku throws SQLITE3 Read only exception -

lex - Building a lexical Analyzer in Java -

python - rename keys in a dictionary -