37 lines
1.1 KiB
Python
37 lines
1.1 KiB
Python
import mariadb
|
|
|
|
# Database connection credentials
|
|
def get_db_connection():
|
|
return mariadb.connect(
|
|
user="trasabilitate", # Replace with your username
|
|
password="Initial01!", # Replace with your password
|
|
host="localhost", # Replace with your host
|
|
port=3306, # Default MariaDB port
|
|
database="trasabilitate_database" # Replace with your database name
|
|
)
|
|
|
|
try:
|
|
# Connect to the database
|
|
conn = get_db_connection()
|
|
cursor = conn.cursor()
|
|
|
|
# Insert query
|
|
insert_query = """
|
|
INSERT INTO scan1_orders (operator_code, CP_full_code, OC1_code, OC2_code, quality_code, date, time)
|
|
VALUES (?, ?, ?, ?, ?, ?, ?)
|
|
"""
|
|
# Values to insert
|
|
values = ('OP01', 'CP12345678-0002', 'OC11', 'OC22', 000, '2025-04-22', '14:30:00')
|
|
|
|
# Execute the query
|
|
cursor.execute(insert_query, values)
|
|
conn.commit()
|
|
|
|
print("Test data inserted successfully into scan1_orders.")
|
|
|
|
# Close the connection
|
|
cursor.close()
|
|
conn.close()
|
|
|
|
except mariadb.Error as e:
|
|
print(f"Error inserting data: {e}") |