Skip to content

Commit c4e98a1

Browse files
committed
Added a space after all comment signs where it was missing
1 parent e68bedf commit c4e98a1

30 files changed

+65
-65
lines changed

python/CRUD-examples/createDBObjects.sql

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
#code Sample from the tutorial at https://learncodeshare.net/2015/06/02/basic-crud-operations-using-cx_oracle/
2-
#The following creates and populates the tables used for the tutorial
1+
# code Sample from the tutorial at https://learncodeshare.net/2015/06/02/basic-crud-operations-using-cx_oracle/
2+
# The following creates and populates the tables used for the tutorial
33

44
CREATE TABLE lcs_people (
55
id NUMBER GENERATED BY DEFAULT AS identity,

python/CRUD-examples/delete/extra_fun_1.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
#Code Sample from the tutorial at https://learncodeshare.net/2015/07/09/delete-crud-using-cx_oracle/
1+
# Code Sample from the tutorial at https://learncodeshare.net/2015/07/09/delete-crud-using-cx_oracle/
22
# section titled "Extra Fun 1"
3-
#Using the base template, the example code executes a simple delete using named bind variables.
3+
# Using the base template, the example code executes a simple delete using named bind variables.
44

55
import cx_Oracle
66
import os

python/CRUD-examples/delete/extra_fun_2.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
#Code Sample from the tutorial at https://learncodeshare.net/2015/07/09/delete-crud-using-cx_oracle/
1+
# Code Sample from the tutorial at https://learncodeshare.net/2015/07/09/delete-crud-using-cx_oracle/
22
# section titled "Extra Fun 2"
3-
#Using the base template, the example code executes two simple deletes using named bind variables.
3+
# Using the base template, the example code executes two simple deletes using named bind variables.
44
# The child records are removed, followed by the parent record.
55

66
import cx_Oracle

python/CRUD-examples/delete/foreign_keys.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
#Code Sample from the tutorial at https://learncodeshare.net/2015/07/09/delete-crud-using-cx_oracle/
1+
# Code Sample from the tutorial at https://learncodeshare.net/2015/07/09/delete-crud-using-cx_oracle/
22
# section titled "Deleting records referenced by Foreign Keys" 1st example
3-
#Using the base template, the example code executes a simple delete using named bind variables.
3+
# Using the base template, the example code executes a simple delete using named bind variables.
44
# When following the tutorial with default data this section intentionally throws an error
55
# to demonstrate foreign key functionality.
66

python/CRUD-examples/delete/handle_pets.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
#Code Sample from the tutorial at https://learncodeshare.net/2015/07/09/delete-crud-using-cx_oracle/
1+
# Code Sample from the tutorial at https://learncodeshare.net/2015/07/09/delete-crud-using-cx_oracle/
22
# section titled "Deleting records referenced by Foreign Keys" 2nd example
3-
#Using the base template, the example code executes two simple deletes using named bind variables.
3+
# Using the base template, the example code executes two simple deletes using named bind variables.
44
# The child records are removed, followed by the parent record.
55

66
import cx_Oracle

python/CRUD-examples/delete/reset_data.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
#Code Sample from the tutorial at https://learncodeshare.net/2015/07/09/delete-crud-using-cx_oracle/
1+
# Code Sample from the tutorial at https://learncodeshare.net/2015/07/09/delete-crud-using-cx_oracle/
22
# section titled "Resetting the data"
3-
#The following resets the data for use with the update section
4-
#For both tables:
3+
# The following resets the data for use with the update section
4+
# For both tables:
55
# Table data is removed.
66
# The identity column is set to start with the id after the starting data.
77
# Using the executemany function an array of starting data is inserted into the table.

python/CRUD-examples/delete/simple.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
#Code Sample from the tutorial at https://learncodeshare.net/2015/07/09/delete-crud-using-cx_oracle/
1+
# Code Sample from the tutorial at https://learncodeshare.net/2015/07/09/delete-crud-using-cx_oracle/
22
# section titled "Simple delete"
3-
#Using the base template, the example code executes a simple delete using named bind variables.
3+
# Using the base template, the example code executes a simple delete using named bind variables.
44

55
import cx_Oracle
66
import os

python/CRUD-examples/delete/template.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
#Code Sample from the tutorial at https://learncodeshare.net/2015/07/09/delete-crud-using-cx_oracle/
1+
# Code Sample from the tutorial at https://learncodeshare.net/2015/07/09/delete-crud-using-cx_oracle/
22
# section titled "Boilerplate template"
3-
#The following code is used as the base template for the other examples.
3+
# The following code is used as the base template for the other examples.
44

55
import cx_Oracle
66
import os

python/CRUD-examples/dropDBObjects.sql

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
#code Sample from the tutorial at https://learncodeshare.net/2015/06/02/basic-crud-operations-using-cx_oracle/
2-
#The following drops the tables created for the tutorial
1+
# code Sample from the tutorial at https://learncodeshare.net/2015/06/02/basic-crud-operations-using-cx_oracle/
2+
# The following drops the tables created for the tutorial
33

44
drop table CX_PETS
55
/

python/CRUD-examples/insert/extra_fun_1.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
#Code Sample from the tutorial at https://learncodeshare.net/2015/06/26/insert-crud-using-cx_oracle/
1+
# Code Sample from the tutorial at https://learncodeshare.net/2015/06/26/insert-crud-using-cx_oracle/
22
# section titled "Extra Fun 1 & 2"
3-
#Using the base template, the example code executes a simple insert using positional bind variables.
3+
# Using the base template, the example code executes a simple insert using positional bind variables.
44
# The same statement is executed twice each using different bind variable values.
55

66
import cx_Oracle

0 commit comments

Comments
 (0)