#column# <-> @column
Status: Alpha
Brought to you by:
sellig
I wonder if a configurable character could be supported
in place of the iBATIS hash marks. If people have
queries coded for ASP.NET, such as
SELECT column FROM table WHERE column=@column
then they would not need to change it to
SELECT column FROM table WHERE column=#column#
just to please Nausicaa :)
-Ted.
Logged In: YES
user_id=682760
It'a bit more complicated on .NET because the prefix "@" on
IDbParameter is only supported by Sql Server, for Oracle
is ":", for Oldb or Obdc it's "" (empty). See provider.config.
Each database has his specification.
## is generic, you don't have to know which prefix to use.