Skip to content

Support for "string" #9

@diekaines

Description

@diekaines

Please add support for "string" column type.

I have this on sqlite

CREATE TABLE "posts" (
	"postid"	INTEGER,
	"authorname"	STRING,
);

and it didnt work till i added the "STRING" on the code

        if data_type in {"TEXT", "CLOB","STRING"}:
            return "TEXT"

Sqlite3 has the "string" as a valid column type as you can see here
https://github.com/WinBuilds/sqlite3/blob/1ef6f39d2238c8d75bb1a555a98e583340a33195/test/types.test#L275

Thank you

Metadata

Metadata

Assignees

No one assigned

    Labels

    enhancementNew feature or requestquestionFurther information is requested

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions