I have a python script that should be able to write data into a made SQL table. I have these lines that should do it:
#Connect to the database
testDBCon = sqlalchemy.create_engine('mssql+pyodbc://SRVISCDB,58837/testDB?driver=SQL+Server+Native+Client+11.0')
#Choose what query to select a column from
query = "SELECT * FROM testDB.dbo.SuspensiaImageDetails;"
query = "INSERT INTO testDB.dbo.SuspensiaImageDetails (FileName,
FileSize, FilePath, Height, Width, Format, Mode, Frames)VALUES ("
query += line
query += ");"
The output that I get when I print(query)
and I get this:
INSERT INTO testDB.dbo.SuspensiaImageDetails (FileName, FileSize,
FilePath, Height, Width, Format, Mode, Frames)VALUES (,X01LA0295.JPG
,9718 ,.JPG
,400
600 ,JPEG ,RGB
,1 ,);
A few issues I see is all the gaps in-between the values, as well as commas in-between the values. I have this line that puts a comma in-between the values but it puts it in the front and end of every value. However those may be an issue as well.
line += f",{str(value):<30} "
My question is how can I fix these lines to get the values I have into the SQL database table?