You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The SQLite db I am attempting to get date from has columns that are in a Date/Time format like this 2019-07-02 04:59:18.578 +00:00 . It seems my queries all fail to pull back the data with the error in the subject line. Is there an override or way to convert it to string?
I have tried using all the -As param options, all give same error.
Example of query that fails "Select * From table_name;"
I am iterating through tables to find specific named columns and then getting that data so I can't easily just grab all columns besides the ones with the date/time.
The text was updated successfully, but these errors were encountered:
@boochkn I was unable to replicate the issue though I think sean-sauve may be right on checking the type of the column. According to SQlite doc, it could be TEXT, REAL or INT. If you can provide further schema info or a replication case. I'll take a look.
I ran this to create a table with a iso formatted time stamp and didn't experience the error you did.
The SQLite db I am attempting to get date from has columns that are in a Date/Time format like this
2019-07-02 04:59:18.578 +00:00
. It seems my queries all fail to pull back the data with the error in the subject line. Is there an override or way to convert it to string?I have tried using all the -As param options, all give same error.
Example of query that fails "Select * From table_name;"
I am iterating through tables to find specific named columns and then getting that data so I can't easily just grab all columns besides the ones with the date/time.
The text was updated successfully, but these errors were encountered: