Question

Je suis perplexe sur la bonne utilisation de variables de liaison avec dates à Oracle.Ce n'est pas dans la base de données ou lorsque vous utilisez PL / SQL, mais plutôt lorsque vous interagissez avec Oracle sur une interface OCI, où la date doit être transmise sous forme de chaîne à l'aide de la fonction to_date .

J'aurais pensé la bonne approche pour que la bonne utilisation des variables liées est de procéder à ce qui suit:

to_date(:my_date, :my_date_format)

Cependant, j'ai vu des approches où le format de date n'est pas effectué en utilisant Lié, alors je suis un peu confus.

Quelqu'un peut-il confirmer cela ou suggérer la meilleure approche?

Était-ce utile?

La solution

Is the date format a constant? Or does it change at runtime?

Normally, you know what format the string is (at least expected) to be in so the date format would be a constant. If something is a constant, it is not necessary to make it a bind variable, it can just be hard-coded as part of the statement. In this case, it wouldn't matter either way but there are cases where you'd rather the value be hard-coded in the SQL statement because you want to give the optimizer more information (think of a column with highly skewed data where you're always looking for a particular hard-coded value).

On the other hand, if the date format changes at runtime because someone is passing both the string representation of the date and the format the string is in to your procedure, it would make sense for the date format to be a bind variable.

Autres conseils

The answer to your question is it depends...

If you're dynamically creating your date_format then you ought to use a bind variable to make yourself SQL-injection safe. If you're not dynamically creating the date-format then it's already hard-coded and there's very little point.

select to_date(:my_date,'yyyymmdd') from dual

is safe anyway but:

select to_date(:my_date,:my_date_format) from dual

should really be a bind.

This is all assuming that :my_date is not a column, in which case it cannot be a bind variable at all.

If you're binding :my_date though you're passing a static date to Oracle and not using a column then can't OCI work this out for you without going to Oracle ( I don't know for sure, never used it ).

Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top