I would like to insert a new column into my DB via B4J program. The new column should not be added at the back, but in the middle. I have applied the following command:
SQL_DB.ExecNonQuery("ALTER TABLE Angebot_Details ADD Rabatt_Proz Text AFTER 'Netto_Preis'")
Unfortunately, he adds the new column last. What is wrong ?
SQL_DB.ExecNonQuery("ALTER TABLE Angebot_Details ADD Rabatt_Proz Text AFTER 'Netto_Preis'")
Unfortunately, he adds the new column last. What is wrong ?