RE: recovering lost data

2001-06-04 Thread Sterin, Ilya
DBI/DBD::* are only interface/drivers to the underlying database. When you call any DBI function it's in fact executing the db function. This is more of a DB specific question. If your db has some sort of a back up, etc..., then you can recover through that, DBI would really have nothing to do

RE: recovering lost data

2001-06-04 Thread Wilson, Doug
> i've deleted data from a table via dbi a few days ago: > is this recoverable via dbi, and if so whatwould the example code be? Anything's recoverable if you've kept backups. But not through DBI (at least not once its committed, which, after a few days, I assume it is).