Is there any way to add multiple column in a single statement in ORMLite. Although i have gone through this Sqlite question: sqlite alter table add MULTIPLE columns in a single statement
And according to this link there is no way in Sqlite but as ORMLite is a wrapper on sqlite as per my knowledge, is there any way to add multiple columns in a single statement like we do in sql:
ALTER TABLE table_name
ADD (column_1 column-definition,
column_2 column-definition,
...
column_n column_definition);
Thanks in advance!!