SA-MP Forums Archive
Help SQLite - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (https://sampforum.blast.hk/forumdisplay.php?fid=12)
+--- Thread: Help SQLite (/showthread.php?tid=628391)



Help SQLite - BrianFaria - 09.02.2017

Hello, I have a doubt, I have the table created and everything is fine in SQlite, but as I add another one without deleting the database, I want to add the other line "RAZON".


Re: Help SQLite - BrianFaria - 10.02.2017

bump


Re: Help SQLite - SyS - 10.02.2017

use alter table to add columns


Re: Help SQLite - BrianFaria - 10.02.2017

But I did, or is my code wrong?


Re: Help SQLite - SyS - 10.02.2017

Quote:
Originally Posted by BrianFaria
Посмотреть сообщение
But I did, or is my code wrong?
yeah see the syntax of alter table
PHP код:
ALTER TABLE table_name
ADD column_name datatype 
I recommend you to do this in sqlite browser.


Re: Help SQLite - BrianFaria - 10.02.2017

Thanks!!!