Click here to Skip to main content
15,914,071 members
Home / Discussions / C#
   

C#

 
GeneralRe: C# code to find Prime Numbers Pin
Robert Rohde21-May-05 4:46
Robert Rohde21-May-05 4:46 
GeneralRe: C# code to find Prime Numbers Pin
Asad Hussain21-May-05 10:43
Asad Hussain21-May-05 10:43 
GeneralRe: C# code to find Prime Numbers Pin
diabolusgorgon21-May-05 13:31
diabolusgorgon21-May-05 13:31 
GeneralRe: C# code to find Prime Numbers Pin
Robert Rohde21-May-05 20:04
Robert Rohde21-May-05 20:04 
GeneralRe: C# code to find Prime Numbers Pin
diabolusgorgon21-May-05 13:27
diabolusgorgon21-May-05 13:27 
GeneralRe: C# code to find Prime Numbers Pin
Robert Rohde21-May-05 20:37
Robert Rohde21-May-05 20:37 
QuestionHow to include HTML Pin
Murtuza Husain Miyan Patel21-May-05 4:13
professionalMurtuza Husain Miyan Patel21-May-05 4:13 
AnswerRe: How to include HTML Pin
DavidNohejl21-May-05 4:22
DavidNohejl21-May-05 4:22 
Generalobfuscator/urgent!!! Pin
rabi kumar21-May-05 1:39
rabi kumar21-May-05 1:39 
GeneralListbox Context Menu Pin
Da`Sooty20-May-05 23:06
Da`Sooty20-May-05 23:06 
GeneralRe: Listbox Context Menu Pin
S. Senthil Kumar21-May-05 0:16
S. Senthil Kumar21-May-05 0:16 
GeneralRe: Listbox Context Menu Pin
Robert Rohde21-May-05 0:26
Robert Rohde21-May-05 0:26 
GeneralProblem reading stream Pin
AnonymousTwo20-May-05 22:50
AnonymousTwo20-May-05 22:50 
GeneralRe: Problem reading stream Pin
Robert Rohde21-May-05 0:48
Robert Rohde21-May-05 0:48 
Generaljoin DBF files Pin
Bedevian20-May-05 20:07
Bedevian20-May-05 20:07 
GeneralRe: join DBF files Pin
Robert Rohde20-May-05 20:56
Robert Rohde20-May-05 20:56 
This has to be slow. Dbf files dont have a very good performance and copying all this together for just some queries is probably a bit overhead.

Some hints you might try out:
1. Try out the Visual Fox Pro Ole Db Provider. It can be found somewhere on MSDN. I dont know it but its probably faster (I used it once and never had performance issues).
2. What kind of report are you making? Do you really need one big DBF file? Consider getting all data at once into one DataTable and then calculating whatever you need on this DataTable. You can use the UNION ALL statement to get all tables in one statement:
Select TYPE,EMPLOYEE from MyDbfFile1 UNION ALL Select TYPE,EMPLOYEE from MyDbfFile2 UNION ALL Select TYPE,EMPLOYEE from MyDbfFile3 ...
3. Use some real Database Wink | ;)
GeneralRe: join DBF files Pin
Bedevian20-May-05 23:56
Bedevian20-May-05 23:56 
GeneralRe: join DBF files Pin
Robert Rohde21-May-05 0:15
Robert Rohde21-May-05 0:15 
GeneralRe: join DBF files Pin
Bedevian21-May-05 19:34
Bedevian21-May-05 19:34 
GeneralRe: join DBF files Pin
Robert Rohde21-May-05 20:02
Robert Rohde21-May-05 20:02 
GeneralRe: pass dataset to new database Pin
sevan22-May-05 21:03
sevan22-May-05 21:03 
GeneralShortcut key for C# Application Pin
Anonymous20-May-05 20:05
Anonymous20-May-05 20:05 
GeneralRe: Shortcut key for C# Application Pin
ekynox20-May-05 22:47
ekynox20-May-05 22:47 
GeneralNTFS Folder Security Permissions Pin
ekynox20-May-05 17:18
ekynox20-May-05 17:18 
GeneralWebResponse and UTF8 Pin
Danny Mark20-May-05 16:00
sussDanny Mark20-May-05 16:00 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.