diff options
author | Bibiko <bibiko@eva.mpg.de> | 2010-01-21 14:15:33 +0000 |
---|---|---|
committer | Bibiko <bibiko@eva.mpg.de> | 2010-01-21 14:15:33 +0000 |
commit | 0d1fff4494127c5676067c2c9bef597e7bc0ca94 (patch) | |
tree | edbe8b8772bed7123ca129c030e4ae841286e183 /Source/TableSource.m | |
parent | d1af3d55bace5a74766d29da0c72665989038067 (diff) | |
download | sequelpro-0d1fff4494127c5676067c2c9bef597e7bc0ca94.tar.gz sequelpro-0d1fff4494127c5676067c2c9bef597e7bc0ca94.tar.bz2 sequelpro-0d1fff4494127c5676067c2c9bef597e7bc0ca94.zip |
• added call to update the completion list to neuralgic places
- next steps to minimize the traffic - ie manipulating the dict directly without querying - follows
Diffstat (limited to 'Source/TableSource.m')
-rw-r--r-- | Source/TableSource.m | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Source/TableSource.m b/Source/TableSource.m index 1fd0cd44..1aa6185e 100644 --- a/Source/TableSource.m +++ b/Source/TableSource.m @@ -771,6 +771,9 @@ fetches the result as an array with a dictionary for each row in it // Mark the content table for refresh [tablesListInstance setContentRequiresReload:YES]; + // Query the structure of all databases in the background (mainly for completion) + [NSThread detachNewThreadSelector:@selector(queryDbStructure) toTarget:mySQLConnection withObject:nil]; + return YES; } else { |