List of commits:
Subject Hash Author Date (UTC)
Added an example of batch processing of prepared statement. f83adc39b5066412fa78fdc0aeccb51ccdba908a caubert 2021-03-31 13:39:52
Added an example of batch processing of prepared statement. c206f2899162396a7f391728db8be23031253454 caubert 2021-03-31 13:38:48
Fixed pb (CONSULTATION relation: justification, primary key and normal form) 14aef6161421064f879c5fe803abb4836eebba0a caubert 2021-03-25 20:58:59
Fixed pb (CONSULTATION relation: justification, primary key and normal form) be645c3e4215fd02ed089b843582d8c870525366 caubert 2021-03-25 20:55:34
Fixes in the DB app chapter. 50082333323792958b213f9b0e5e7dc3a2ed47c5 caubert 2021-03-24 18:46:24
Fixed some include code. 9caf6bc12caded947f222cb03fa0c1b10f2c8041 caubert 2021-03-24 13:11:20
Added question from quiz #3 7426197119517bff992e7753174de82ae3ff7ed7 caubert 2021-03-22 16:37:09
Added instructions in case the server time zone is off. 6f845eee2eec6538a18e6e64fa5e140039aa4482 caubert 2021-03-22 14:32:00
Added a reference to UML. 7b36cee0763b42c481474181423020cb600123fd caubert 2021-03-17 13:59:50
Some notes in DB applications added. 3535d187737aea90413e73489729a4a64ce89f80 caubert 2021-03-17 13:55:48
Fixed typo cfc6ac63d8ed0d0a2b9f4f530524d4723f5baae6 caubert 2021-03-12 18:36:32
fixed couple of typos. 6191d6cc01638c07ab0b48a086718fc2440fa367 caubert 2021-03-12 18:31:47
Added quiz #2$ ff134e831427d6e24603af76be52576928dae301 caubert 2021-03-01 19:51:12
Added missing file. d7f2b8ceb14456db8ee2857fcd2b9445bcff1f95 caubert 2021-02-16 18:54:57
Added more complex queries and triggers for HW_Vaccine. 1b133f143e9c6fec72271de28345df39689235f8 caubert 2021-02-09 20:23:30
Added project 1 and its solution. 14f03a1733c084b26dbc72c009e2b7b832ed8643 caubert 2021-02-06 21:46:04
Added project 1 and its solution. b7a31871ebccbf4caff81d9d57ed6847f4dc5543 caubert 2021-02-06 21:45:24
Added simple examples for SQL. 4ea62f6930ff19bcff8d406d95c9cd84c0f0216d caubert 2021-02-02 22:24:41
Added first project. e851058cc58a9d47ada9970f8b914e798c7d2ce7 caubert 2021-01-27 19:57:12
Few typos. 45ba15cd03fab4388439b617c656f52b2ec96319 caubert 2021-01-26 20:08:24
Commit f83adc39b5066412fa78fdc0aeccb51ccdba908a - Added an example of batch processing of prepared statement.
Author: caubert
Author date (UTC): 2021-03-31 13:39
Committer name: caubert
Committer date (UTC): 2021-03-31 13:39
Parent(s): c206f2899162396a7f391728db8be23031253454
Signer:
Signing key:
Signing status: N
Tree: 8d4b0638bed67ec89fb0be3cfec4986fb11fad09
File Lines added Lines deleted
notes/code/java/BatchPreparedStatements.java 1 1
notes/lectures_notes.md 0 1
File notes/code/java/BatchPreparedStatements.java changed (mode: 100644) (index 12cb00c..8a43619)
... ... public class BatchPreparedStatements {
25 25 } }
26 26
27 27 ps.executeBatch(); ps.executeBatch();
28 // endsnippet batchprepared
28 // end snippet batchprepared
29 29
30 30 // Note that there is no need to execute the clearBatch() method // Note that there is no need to execute the clearBatch() method
31 31 // afterward, as the batch is automatically cleared. // afterward, as the batch is automatically cleared.
File notes/lectures_notes.md changed (mode: 100644) (index 019a5e0..b3756b5)
... ... It is actually fairly immediate!
9030 9030 ``` ```
9031 9031
9032 9032
9033
9034 9033 ## Exercises {-} ## Exercises {-}
9035 9034
9036 9035 Exercise +.# Exercise +.#
Hints:
Before first commit, do not forget to setup your git environment:
git config --global user.name "your_name_here"
git config --global user.email "your@email_here"

Clone this repository using HTTP(S):
git clone https://rocketgit.com/user/caubert/CSCI_3410

Clone this repository using ssh (do not forget to upload a key first):
git clone ssh://rocketgit@ssh.rocketgit.com/user/caubert/CSCI_3410

Clone this repository using git:
git clone git://git.rocketgit.com/user/caubert/CSCI_3410

You are allowed to anonymously push to this repository.
This means that your pushed commits will automatically be transformed into a merge request:
... clone the repository ...
... make some changes and some commits ...
git push origin main