Search Results

0
votes

C++ (Builder) How to populate a database with filenames from a dir and its subdirs.

You basically neeed to write a recursive function with a TDataSet parameter. (I could not compile my code, so you get it "as is") void AddFiles(AnsiString path, TDataSet *Da …
4
votes

Insert a fixed number of rows 2000 at a time in sql server

You can use the SELECT TOP clause: in MSSQL 2005 it was extended allowing you to use a variable to specify the number of records (older version allowed only a numeric constant) You can try …