My Program Is Working Very Slowly

jothis

Active Member
Licensed User
When I Try To List 1000 Records To A Table It is Showing Very Slowly

Is It Possible To Fast My Program?

Please Help Me
:sign0085:
jothis
 

nl1007

Member
Licensed User
Longtime User
Table -> SQL

You can use the 'CreateSQLTable( )' command of the sql connection control, which creates a database table from a Table control - but you should also create an index; it can speed up db access more than 10x..
Although 'ExecuteTable' will load the table control from the results of a database query, you have to execute 'Update' SQL commands to get changes back into the db. (or Insert, for new data). Use Command Parameters, to save worrying about delimiting data containing quote characters, and also to prevent SQL insertion (if the data is entered by the user).
 
Top