List of commits:
Subject Hash Author Date (UTC)
Updated mysql connector 228d86db5498aae94a4d162272fa03a84ae9c532 aubert@math.cnrs.fr 2020-12-01 15:09:46
Updated java beautifier 30f4a79f2d911cd0b6a24c31f968f0d23620965f aubert@math.cnrs.fr 2020-12-01 15:07:50
Worked on procedure example from java 998ea14119a5a3f88efc4b0a126177e85151e43d aubert@math.cnrs.fr 2020-12-01 15:06:47
Brief example of calling a procedure from a program. 1054c9d5c83fb956bdd0b8d884d5ce2c8a9a640e aubert@math.cnrs.fr 2020-11-30 19:00:45
Added solution to second exam d8f62ded96991885a96d561db587988d453a28c8 aubert@math.cnrs.fr 2020-11-05 20:35:50
Quick fix on testing semicolons. 7f48d88d2ed69213d803a7736df3d50330cfecd1 aubert@math.cnrs.fr 2020-11-03 14:14:06
Added simple example to test if semicolon are important in SQL querries. 98097fb11558c08bad630fb3351f99ceb6777de7 aubert@math.cnrs.fr 2020-11-03 14:11:22
Updated spots to https. a8daf1768395aa296bf0dd05783dd53c757d5d19 aubert@math.cnrs.fr 2020-10-05 16:18:44
Adding quiz #2 98e0ae5b8ce766524f60c91adb1040235e1bbf31 aubert@math.cnrs.fr 2020-10-02 19:00:15
Added exam 1 e2f62ae4bf26fcc4b86e8665060ccf3918e7abeb aubert@math.cnrs.fr 2020-09-24 12:51:36
worked on solution to first exam. b13ad99dd895f124df1b642fd990071fc09db294 aubert@math.cnrs.fr 2020-09-23 17:44:01
Added solution to first problem. 0948cee47ed78dc115fd69c7bcf96a312dd3162f aubert@math.cnrs.fr 2020-09-18 21:43:00
Added solution to problem 2 of Exam #1. 7ad20b3c0025a4de3fa00729de570c6fe9176773 aubert@math.cnrs.fr 2020-09-18 21:34:19
Added solution to project 1. de427d78745593ab53dc70e7129b67fee1d4489c aubert@math.cnrs.fr 2020-09-10 19:04:45
Added example for MAX and NULL values. b82a496a5ffbcecaf2c5851f18d1b08ce8732623 aubert@math.cnrs.fr 2020-09-10 13:14:13
Changed SQL code formatting. 6c3cad5a2545f46ab113f7df7a83457857d82ed8 aubert@math.cnrs.fr 2020-09-09 17:04:55
Cleaned code. 5bdb4faed3a83b81257734f1e1aced2890783f04 aubert@math.cnrs.fr 2020-09-03 21:35:41
Added the first project. 564a02887933f2395bc40d7d8a10833f657659fd aubert@math.cnrs.fr 2020-08-28 22:34:08
Week 2 edits, added quiz #1, couple of fixes, replaced single quote with double quotes. 3c9942731678900122088356db3a2cbabd99b9be aubert@math.cnrs.fr 2020-08-27 19:00:13
Added ressource for makefile. 7696c44bca707646530a7dbb71bf2e05badaa306 aubert@math.cnrs.fr 2020-08-03 16:00:23
Commit 228d86db5498aae94a4d162272fa03a84ae9c532 - Updated mysql connector
Author: aubert@math.cnrs.fr
Author date (UTC): 2020-12-01 15:09
Committer name: aubert@math.cnrs.fr
Committer date (UTC): 2020-12-01 15:09
Parent(s): 30f4a79f2d911cd0b6a24c31f968f0d23620965f
Signer:
Signing key:
Signing status: N
Tree: fbc615b1bdcbc440a43ac0328c035884421e10d9
File Lines added Lines deleted
notes/lectures_notes.md 1 1
notes/lib/mysql-connector-java-8.0.19.jar 0 0
notes/lib/mysql-connector-java-8.0.22.jar 0 0
File notes/lectures_notes.md changed (mode: 100644) (index 53891a5..0087285)
... ... We need to set up the *driver* (or *connector*) to make the java `SQL` API and M
8102 8102 - Unzip the file, and locate the "mysql-connector-java-***.jar" file (normally, in the root folder). - Unzip the file, and locate the "mysql-connector-java-***.jar" file (normally, in the root folder).
8103 8103 - Copy that file in the same folder as where you intend to compile your program. - Copy that file in the same folder as where you intend to compile your program.
8104 8104
8105 Once this is done and your program was compiled, you can execute it using (where you replace `***` with the actual number, of course, e.g. `8.0.19`):
8105 Once this is done and your program was compiled, you can execute it using (where you replace `***` with the actual number, of course, e.g. `8.0.22`):
8106 8106
8107 8107 ```{.bash} ```{.bash}
8108 8108 java -cp .:mysql-connector-java-***.jar FirstProg java -cp .:mysql-connector-java-***.jar FirstProg
File notes/lib/mysql-connector-java-8.0.19.jar deleted (index 7750517..0000000)
File notes/lib/mysql-connector-java-8.0.22.jar added (mode: 100644) (index 0000000..412d81f)
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