Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
2
2023-261
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Gamage G.G.I.V.M
2023-261
Commits
0ac301a4
Commit
0ac301a4
authored
Sep 06, 2023
by
Gamage G.G.I.V.M
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Delete dataret.py
parent
e45b49a7
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
22 deletions
+0
-22
IT20036102/dataret.py
IT20036102/dataret.py
+0
-22
No files found.
IT20036102/dataret.py
deleted
100644 → 0
View file @
e45b49a7
import
sqlite3
# Step 1: Connect to the SQLite database
conn
=
sqlite3
.
connect
(
'event_flow.db'
)
cursor
=
conn
.
cursor
()
# Step 2: Define the target function
# Example: Retrieving event flow graph data from an 'events' table
def
retrieve_event_flow_graph_data
():
cursor
.
execute
(
"SELECT * FROM event_flow"
)
rows
=
cursor
.
fetchall
()
for
row
in
rows
:
# Process the retrieved data here
print
(
row
)
# Step 3: Call the target function to retrieve the data
retrieve_event_flow_graph_data
()
# Step 4: Close the database connection
cursor
.
close
()
conn
.
close
()
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment