[eluser]Bart v B[/eluser]
My thought was, ok an application needs to be wide and save.
So when i want to use an other database, and the backtick isn't used,
You get an big problem.
For example:
i have in my database used:
SELECT
`delete`
FROM
tabel;
That is what mysql, (and codeigniter by default) allows you to do.
That's dangerous because when i want to use another framework or someone go a procedural way, then you would have a problem.
SELECT
delete
FROM
tabel;
A whole table is empty then.
Normal you never do that if your have more experienced.
But when a starter whats to use this framework, with just a little knowledge of databases
has a big problem.
And that is my concurring.