Hi In my application I am using SQLITE database,
I want to add multiple column in table,
If i am adding one column that work fine,
I am using ALTER table for add new column,
With this i am able to update one column,
ALTER TABLE "main"."tblCredit" ADD COLUMN "CardDetail" VARCHAR
But How can i add multiple column in tblCredit
table.