04-28-2019, 02:02 AM
(This post was last modified: 04-28-2019, 02:03 AM by Tim Curtis.
Edit Reason: eta
)
Prolly the punctuation characters in the name that are blowing up the sql read/write. That input field is missing a pattern validation that only allows alphanumeric and dash (-) same as in the Graphic eq. Fixed in upcoming moOde update for 5.1
To delete the bad curve which should be the 2nd row in the table try the following.
Print the rows
Delete 2nd row
Re other question: I'm sure it will just clip.
To delete the bad curve which should be the 2nd row in the table try the following.
Print the rows
Code:
sqlite3 /var/local/www/db/moode-sqlite3.db "select * from cfg_eqfa4p"
Delete 2nd row
Code:
sqlite3 /var/local/www/db/moode-sqlite3.db "delete from cfg_eqfa4p where id='2'"
Re other question: I'm sure it will just clip.