SQLite Data to Revit - Object.Type problems

Hi
I want to ask about the process of extracting data from a sqlite database. When importing it in sqlite the data arrives as strings, how can import the data in the corresponding object type back to revit?

In that case the parameter should be System.Double and not string.

thanks in advace.

Try the number from string node

1 Like

image

Thanks finally i solved it with Python code adding object type before export to SQlite

@Andrew_Hannell its possible to import the name of the columns back to revit?
I can only manage to import the values in rows.


2

Sorry @Andrew_Hannell i found it with this code
names = list(map(lambda x: x[0], cursor.description))