System.Data.SQLite

Check-in [06221fdffe]
Login

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

Overview
Comment:Correct file name usage by the backup workloads in the stress test.
Downloads: Tarball | ZIP archive
Timelines: family | ancestors | descendants | both | stress
Files: files | file ages | folders
SHA1: 06221fdffe110161c4a77272eed9568f64a6985c
User & Date: mistachkin 2012-07-11 07:57:34.175
Context
2012-07-12
05:16
Merge new stress test to trunk. check-in: e76caf8e3c user: mistachkin tags: trunk
2012-07-11
07:57
Correct file name usage by the backup workloads in the stress test. Closed-Leaf check-in: 06221fdffe user: mistachkin tags: stress
07:41
Cleanup 'compiled' script variable. check-in: 3a2d7926a6 user: mistachkin tags: stress
Changes
Side-by-Side Diff Ignore Whitespace Patch
Changes to Tests/stress.eagle.
357
358
359
360
361
362
363
364

365
366
367
368

369
370
371
372
373
374
375
357
358
359
360
361
362
363

364
365
366
367

368
369
370
371
372
373
374
375







-
+



-
+







        namespace _Dynamic${id}
        {
          public static class Test${id}
          {
            public static void BackupAndGetData()
            {
              using (SQLiteConnection source = new SQLiteConnection(
                  "FullUri=${srcFileName};"))
                  "FullUri=${dstFileName};"))
              {
                source.Open();
                using (SQLiteConnection destination = new SQLiteConnection(
                    "FullUri=${dstFileName};"))
                    "FullUri=${srcFileName};"))
                {
                  destination.Open();

                  source.BackupDatabase(
                      destination, "main", "main", -1, null, 0);
                }
              }
413
414
415
416
417
418
419
420

421
422
423
424

425
426
427
428
429
430
431
413
414
415
416
417
418
419

420
421
422
423

424
425
426
427
428
429
430
431







-
+



-
+







        namespace _Dynamic${id}
        {
          public static class Test${id}
          {
            public static void BackupAndGetData()
            {
              using (SQLiteConnection source = new SQLiteConnection(
                  "FullUri=${dstFileName};"))
                  "FullUri=${srcFileName};"))
              {
                source.Open();
                using (SQLiteConnection destination = new SQLiteConnection(
                    "FullUri=${srcFileName};"))
                    "FullUri=${dstFileName};"))
                {
                  destination.Open();

                  source.BackupDatabase(
                      destination, "main", "main", -1, null, 0);
                }
              }