Pardon the ignorance, but I'm transitioning from MDB to ADP development. After having so much paranoia about Access data locks, I am having trouble understanding when I need to worry about data locks in SQL Server.
Simple question in 3 parts.
1) If I use a stored procedure that returns an ordered set of 100 records (2 fields - int & varchar) as the rowsource for a list box, is that data locked on the server as long as the LB is open? (The data is a reference list and is effectively read-only)
2) If it does create locks, are they insignificant?
3) What methods would be better to use in the population of my LB? (temp tables, tables data type, anything else)
This application could be used by 15-20 people at the same time.
Any help would be appreciated.
- J
Simple question in 3 parts.
1) If I use a stored procedure that returns an ordered set of 100 records (2 fields - int & varchar) as the rowsource for a list box, is that data locked on the server as long as the LB is open? (The data is a reference list and is effectively read-only)
2) If it does create locks, are they insignificant?
3) What methods would be better to use in the population of my LB? (temp tables, tables data type, anything else)
This application could be used by 15-20 people at the same time.
Any help would be appreciated.
- J