On Mon, 30 Jun 2003, [koi8-r] ����ۣ� ������ wrote:
> Monday, June 30, 2003, 6:23:49 PM, �� ������:
>
> RL> On Mon, 30 Jun 2003, [koi8-r] ������� ������ wrote:
> >>
> >> but i still have memort leak :(
> >> where is it? can you show me bad code in DBI.pm
> >> quote() is very usefull function? but it make big memory leak.
> >> maybe somebody have similar function like quote() ?
> >>
>
> RL> What DBD driver/version are you using? Many of the DBD drivers implement
> RL> their own quote() fuction.
>
>
> RL> Rudy
>
> this is a first lines of my DBI.pm
>
I am not asking about DBI itself.
DBI->connect("dbi:mysql:database", "","")
^^^^^ This is the DBD driver (mysql in this example,
but your may be different).
So to get the version of the driver (assuming mysql), try this:
perl -MDBD::mysql -le 'print $DBD::mysql::VERSION'
If you are using a database other than mysql (postgres, oracle, sybase...)
change 'mysql' to the driver that you are using.
Rudy