Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Difference From sqlsrv-0.0.3 To sqlsrv-0.0.4
2024-01-21
| ||
16:37 | Make internal thread pool optional. check-in: 822036d2f6 user: jan tags: trunk | |
2024-01-19
| ||
16:01 | Release maintenance. check-in: 2a13622830 user: jan tags: sqlsrv-0.0.4, trunk | |
15:58 | Allow dirt to be optionally returned from read/write threaded wrappers. check-in: 03fc406b35 user: jan tags: trunk | |
2024-01-18
| ||
15:51 | Add date. check-in: 9882cb4f86 user: jan tags: sqlsrv-0.0.3, trunk | |
15:50 | Release maintenance. check-in: ceaf99c794 user: jan tags: trunk | |
Changes to Cargo.toml.
1 2 | 1 2 3 4 5 6 7 8 9 10 | - + | [package] name = "sqlsrv" |
︙ |
Changes to src/lib.rs.
︙ | |||
515 516 517 518 519 520 521 | 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 | - + - - + + + + + + + + - + + + - + + + + + + | Ok(wctx) } /// Run a closure with read/write connection pub fn rw_run<F>(&self, f: F) where |
︙ | |||
557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 | 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 | + + | } else { wconn.execute("PRAGMA incremental_vacuum;", params![]) }; match res { Ok(_) => sctx.set(()), Err(e) => sctx.fail(e) } None }) } /// Consume self and wait for all threads in thread pool to complete. pub fn shutdown(self) { self.tpool.join(); } } // vim: set ft=rust et sw=2 ts=2 sts=2 cinoptions=2 tw=79 : |
Changes to www/changelog.md.
1 2 3 4 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 | - + + + + + + + + + + + | # Change Log ## [Unreleased] |
︙ |