(Fwd) [Dbix-class] DBD::SQLite new maintenance plan

2009-03-27 Thread Tim Bunce
- Forwarded message from Matt S Trout dbix-cl...@trout.me.uk - Date: Fri, 27 Mar 2009 10:24:36 + From: Matt S Trout dbix-cl...@trout.me.uk To: dbix-cl...@lists.scsys.co.uk Subject: [Dbix-class] DBD::SQLite new maintenance plan Reply-To: DBIx::Class user and developer list

Re: DBD::PgPP prefix registration request

2009-02-24 Thread Tim Bunce
Done. Thanks. Tim. On Tue, Feb 24, 2009 at 02:56:45PM +, Aaron Crane wrote: I (allegedly) maintain DBD::PgPP, a pure-Perl DBD for PostgreSQL. While preparing a recent release, I discovered that the appropriate driver prefix hasn't been registered. (AFAICT, the original author never got

Re: Embedding DBI in C for PostgreSQL's SQL/MED

2009-02-01 Thread Tim Bunce
would be but I'd suggest perl5-port...@perl.org for general embedding/linking questions, and here for anything DBI related. Good luck! Tim.

Re: Async I/O with DBI?

2009-01-15 Thread Tim Bunce
Marc, what would need to be added to the DBI (or DBD::Gofer) to support asynchronous use via the Coro module? Tim. http://search.cpan.org/~mlehmann/Coro/ On Tue, Jan 13, 2009 at 01:58:15PM -0500, Wechsler, Steven wrote: Anyone ever do this? Essentially, I would like to be able to send

Re: DBD::DB2: handling warnings

2008-12-31 Thread Tim Bunce
to true, so if SQL_SUCCESS_WITH_INFO is treated as a warning then they'll get printed - probably not what most people would want. Tim.

Re: implied parameter binding

2008-12-09 Thread Tim Bunce
) as a text/plain attachement. Thanks. Tim.

Re: Help sought with definition and implementation of ParamTypes attribute

2008-10-13 Thread Tim Bunce
On Mon, Oct 13, 2008 at 08:38:08AM +0200, H.Merijn Brand wrote: On Sun, 12 Oct 2008 21:25:12 +0100, Tim Bunce [EMAIL PROTECTED] wrote: On Sun, Oct 12, 2008 at 02:55:51AM -, Greg Sabino Mullane wrote: values are hashrefs of type information in the same form as that provided

Re: Help sought with definition and implementation of ParamTypes attribute

2008-10-13 Thread Tim Bunce
for the clarification Tim, that all makes sense. I've changed DBD::Pg to do the right thing for ParamTypes. Specifically, it outputs a hash with placeholder numbers or names as keys, as before, and with a hashref for the values that contains a single key (always pg_type) and the internal type number

Re: Help sought with definition and implementation of ParamTypes attribute

2008-10-13 Thread Tim Bunce
as in or in/out. You can add anything you like so long as 1. the keys have your driver private attribute prefix, so other driver won't choke on them. 2. your driver won't choke if bind_param is called with those extra keys. Tim.

Re: Help sought with definition and implementation of ParamTypes attribute

2008-10-12 Thread Tim Bunce
the number it maps to. Yes. Outputting the _string_ SQL_INTEGER would be wrong as it wouldn't work for the code above. I can easily adjust ParamTypes in DBD::Pg to give a hashref, if that's what you end up doing for DBD::ODBC Tim.

Re: Volunteers sought to help with or take over Oracle::OCI

2008-09-22 Thread Tim Bunce
On Sat, Sep 20, 2008 at 02:55:33PM -0400, Jeff Macdonald wrote: On Mon, Jul 21, 2008 at 3:51 PM, Tim Bunce [EMAIL PROTECTED] wrote: On Mon, Jul 21, 2008 at 5:23 PM, John Scoles [EMAIL PROTECTED] wrote: I suppose I could take it over as I am doing DBD::Oracle as well. Meanwhile, I'll

Re: the return of tables ()

2008-09-02 Thread Tim Bunce
On Tue, Sep 02, 2008 at 12:39:41AM +0200, H.Merijn Brand wrote: On Mon, 1 Sep 2008 22:59:24 +0100, Tim Bunce [EMAIL PROTECTED] wrote: As get_info (29) now returns a TRUE value, the 'tables ()' method is using a different strategy to build the list it returns

Re: Taking trace () to the next level ...

2008-09-02 Thread Tim Bunce
On Mon, Sep 01, 2008 at 05:01:40PM -0700, Jonathan Leffler wrote: On Mon, Sep 1, 2008 at 3:30 PM, Tim Bunce [EMAIL PROTECTED] wrote: On Mon, Sep 01, 2008 at 01:31:57PM +0200, H.Merijn Brand wrote: On Sun, 31 Aug 2008 23:56:43 +0100, Tim Bunce [EMAIL PROTECTED] wrote: Having said

Re: the return of tables ()

2008-09-01 Thread Tim Bunce
and/or TABLE_SCHEM columns in the data returned by your table_info() method are probably empty strings but should be undefs. What does Data::Dumper::Dumper($dbh-table_info(...)-fetchall_arrayref) show for an example table? Tim.

Re: Passing unicode strings to prepare method and other unicode questions

2008-09-01 Thread Tim Bunce
get dbname to be an SV - as you may have guessed by now I'm not an XS expert. Is it just a case of changing my DBD::ODBC::db::_login to say it is an SV*? Something like the appended change should do it (untested). Tim

Re: Taking trace () to the next level ...

2008-09-01 Thread Tim Bunce
On Mon, Sep 01, 2008 at 01:31:57PM +0200, H.Merijn Brand wrote: On Sun, 31 Aug 2008 23:56:43 +0100, Tim Bunce [EMAIL PROTECTED] wrote: Having said all that, I can see some value in having a separate driver trace level. I suggest a few of the middle 16 bits are given over to IMHO 4 bits

Re: Unusual behavior with $sth-{NAME} and friends

2008-08-31 Thread Tim Bunce
. Tim.

Re: the return of tables ()

2008-08-31 Thread Tim Bunce
. The docs for quote_identifier say: **Undefined names are ignored** and the remainder are quoted and then joined together, typically with a dot (.) character. Tim. I think therefor that in this case, the catalog setting must also be checked, somewhat like this: sub tables

Re: Passing unicode strings to prepare method and other unicode questions

2008-08-31 Thread Tim Bunce
odbc_st_prepare_sv, or name it dbd_st_prepare_sv and let the macro rename it for you.) Tim.

Re: Taking trace () to the next level ...

2008-08-31 Thread Tim Bunce
be as simple as setting a negative trace level. For example: $h-trace(1,-2); # DBI trace level 1, DBD trace level 2 Tim. p.s. re the separator for the trace values... the code is currently for my $word (split /\s*[|,]\s*/, $spec) { ... } (see parse_trace_flags() in DBI.pm) but there's

(Fwd) noitify author of DBD::Oracle

2008-08-30 Thread Tim Bunce
- Forwarded message from Chuck Pareto [EMAIL PROTECTED] - Subject: noitify author of DBD::Oracle Date: Wed, 27 Aug 2008 17:25:38 -0700 From: Chuck Pareto [EMAIL PROTECTED] Priority: normal To: [EMAIL PROTECTED] X-Pobox-Antispam: broadband/ returned deny Hi, After trying to run

Re: DBI version, #defines in c driver code

2008-08-15 Thread Tim Bunce
correspond to actual DBI version? DBIXS_REVISION tracks the subversion revision number. (See dbixs_rev.pl) Tim.

Re: Unusual behavior with $sth-{NAME} and friends

2008-08-07 Thread Tim Bunce
The finish() docs say: Calling Cfinish resets the L/Active attribute for the statement. It may also make some statement handle attributes (such as CNAME and CTYPE) unavailable if they have not already been accessed (and thus cached). Tim. On Thu, Aug 07, 2008 at 04:29:25PM -, Greg

Re: Memory trampling in t/*_85gofer.t tests - was: DBI wont install even after unset LANG

2008-07-31 Thread Tim Bunce
recommendation would be to upgrade to Perl 5.10.0; failing that, upgrade to 5.8.8. Seconded. Tim.

Re: Clarification sought on deleting connection attributes

2008-07-28 Thread Tim Bunce
problems/errors/whatever. So the driver can delete from %$attr any attributes it doesn't want the DBI to call STORE on later. Tim. p.s. patch to DBI::DBD docs most welcome!

Re: Clarification sought on deleting connection attributes

2008-07-28 Thread Tim Bunce
On Mon, Jul 28, 2008 at 05:09:03PM +0100, Martin Evans wrote: Tim Bunce wrote: On Mon, Jul 28, 2008 at 01:13:50PM +0100, Martin Evans wrote: Hi, From the DBI::DBD docs in The dbd_db_login6 method I read: = Here’s how you fetch them; as an example we use hostname attribute, which can

Re: ANNOUNCE: DBD::Oracle 1.22 Release Candidate 2

2008-07-28 Thread Tim Bunce
rights and the test should pass. Sure, but tests shouldn't fail just because of a lack of privs. The test needs to detect that and do a skip(). Tim.

Re: ANNOUNCE: DBD::Oracle 1.22 Release Candidate 1

2008-07-25 Thread Tim Bunce
: META.yml John, using make dist to make the distribution should look after that for you. Just run make dist then rename the DBD-Oracle-X.YY.tar.gz file to add in the _RC1. Tim.

Re: ANNOUNCE: DBD::Oracle 1.22 Release Candidate 1

2008-07-25 Thread Tim Bunce
://blog.timbunce.org/2008/07/12/devel-dprof-broken-by-the-passage-of-time/ Thanks to Tim and Adam Kaplan for this. Thanks. I've a 41 minute screencast of my OSCON presentation. Should be uploaded witin a week. Tim.

Re: How About Connection Pools

2008-06-12 Thread Tim Bunce
, there's been some small interest for years but nothing much has come of it. Tim. On Thu, Jun 12, 2008 at 12:04:22PM -0400, John Scoles wrote: I have been doing a little research into connection Pooling with OCI and I was just wondering if the concept of a Connection Pool would fit

Re: Repeated values in ODBC.pm

2008-06-02 Thread Tim Bunce
Applied, thanks. Tim. On Sun, Jun 01, 2008 at 07:29:00PM -0400, Greg Sabino Mullane wrote: Looks like a minor cut-n-paste error. Patch inlined: Index: lib/DBI/Const/GetInfo/ODBC.pm === --- lib/DBI/Const/GetInfo/ODBC.pm

Re: Memory leak in DBI ?

2008-05-23 Thread Tim Bunce
I'm sorry for the delay replying. On Thu, Apr 10, 2008 at 05:00:57PM +0200, Philippe Bruhat (BooK) wrote: On Thu, Apr 10, 2008 at 03:40:55PM +0100, Tim Bunce wrote: I trust the script is destroying the results and, where appropriate, the $sth before calling Devel::Leak::CheckSV. Yes

Re: Sort hash keys in C...

2008-05-19 Thread Tim Bunce
On Fri, May 16, 2008 at 01:45:51AM +0100, Rudolf Lippan wrote: On Thu, 15 May 2008 13:21:34 +0100, Tim Bunce [EMAIL PROTECTED] wrote: I'm sorry for the delay in responding Rudy. On Wed, May 07, 2008 at 02:34:43AM -0400, Rudy Lippan wrote: use Scalar::Util qw(looks_like_number); sub

Re: Sort hash keys in C...

2008-05-15 Thread Tim Bunce
for the ShowErrorStatement code (around line 3387). Thanks again for all your work on this Rudy! Tim. p.s. I've already committed the sv_2mortal change in neatsvpv() - but in a different way, so you can drop that hunk from the patch before you apply the patch to the trunk.

Re: bind_param for named parameters - clarification sought

2008-05-13 Thread Tim Bunce
On Tue, May 13, 2008 at 01:20:14PM +0100, Martin Evans wrote: Tim, In the thread problem with DBD::ODBC and placeholders [SEC=UNCLASSIFIED] on dbi-users recently you said: Drivers that support named placeholders like :N where N is an integer, could support both forms of binding

Re: Question on 'SQL' tracing

2008-05-12 Thread Tim Bunce
. Tim.

Re: $dbh-{CachedKids}

2008-05-09 Thread Tim Bunce
On Fri, May 02, 2008 at 07:03:10PM -0700, David E. Wheeler wrote: On May 2, 2008, at 15:24, Tim Bunce wrote: You've not given me much to go on, but I'd guess it's related to the timing of when perl invokes the DESTROY method (which has changed between perl versions). In which case it may

Re: Sort hash keys in C...

2008-04-29 Thread Tim Bunce
On Tue, Apr 29, 2008 at 01:56:26AM +0100, Rudolf Lippan wrote: On Mon, 28 Apr 2008 23:51:09 +0100, Tim Bunce [EMAIL PROTECTED] wrote: On Mon, Apr 28, 2008 at 03:24:10PM +0100, Rudolf Lippan wrote: Oh, And is there a way to attach a string to an SV w/o copying it? Not sure what you

Re: Sort hash keys in C...

2008-04-28 Thread Tim Bunce
On Mon, Apr 28, 2008 at 03:24:10PM +0100, Rudolf Lippan wrote: On Thu, 24 Apr 2008 13:31:47 +0100, Tim Bunce [EMAIL PROTECTED] wrote: Hi Tim, So I'd be happy to see an API like this: SV *_concat_hash_sorted( HV *hv, char *kv_sep, char *pair_sep, SV *value_format, SV *sort_type

Re: DBD::mysql patch for take_imp_data based threading

2008-04-27 Thread Tim Bunce
get rid of this error? I look at how I'm running this and everything looks good. Test::More has an API like ok( $boolean, $testname ) is( $x, $y, $testname ) so there's probably a test like ok( ..., 1 ) where the 1 should now be a test 'name,' like the wibble should wobble. Tim.

Re: DBD::mysql patch for take_imp_data based threading

2008-04-25 Thread Tim Bunce
Beckman's patch he sent me for this a year or two ago. Do you know what the specific version of this is that this feature was added to DBI? I can put logic in the tests that ignore this test if the DBI version is not supporting it. You could just do ... if $dbh-can('take_imp_data'); Tim

Sort hash keys in C...

2008-04-22 Thread Tim Bunce
would enable the ParamValues reported by ShowErrorStatement to be listed in sorted order: http://rt.cpan.org/Ticket/Display.html?id=27272 (function could take a flag to indicate lexical or numeric sort order) Any volunteers, either for both or just the sort function? Tim.

Re: Memory leak in DBI ?

2008-04-10 Thread Tim Bunce
I trust the script is destroying the results and, where appropriate, the $sth before calling Devel::Leak::CheckSV. Could you post the script? Tim. On Thu, Apr 10, 2008 at 01:00:09PM +0200, Philippe Bruhat (BooK) wrote: Hi, While looking for memory leaks in our code using Devel::Leak, we

Re: Difficulties building DBD modules against DBI installation

2008-04-07 Thread Tim Bunce
you're picking up is the wrong one. Tim.

Re: ANNOUNCE: DBD::Oracle 1.21 Release Candidate 4

2008-04-07 Thread Tim Bunce
people had a crack at it first. You could announce the RC to dbi-users and dbi-announce. Tim.

Re: ANNOUNCE: DBD::Oracle 1.21 Release Candidate 2

2008-04-01 Thread Tim Bunce
in the temporary subdirectory before it gets tar'd up. Tim.

Re: Using database handles after disconnect

2008-03-26 Thread Tim Bunce
needn't waste time being pedantic and second guessing what's allowable. (Why just disallow prepare, for example?) Tim.

Re: ODBC 3.5 spec ?

2008-03-24 Thread Tim Bunce
. Sounds plausible. You may be able to find a copy of the ODBC 3.5 Developers Guide book by Roger Sanders (pub Mc Graw Hill). Have fun! Tim.

Re: The max_rows attribute to fetchall_arrayref no longer works

2008-03-24 Thread Tim Bunce
if $max_rows and not $sth-FETCH('Active'); my $mode = ref($slice) || 'ARRAY'; my @rows; New DBI release to follow... Tim.

Re: Raising the dead Scrolling Cursors

2008-03-19 Thread Tim Bunce
. With docs, I trust :) Expect to see the first RC of 1.21 in the next day or two. Great. Thanks John. Tim. Cheers John Scoles [EMAIL PROTECTED] wrote: Opps my night for boo-boos Anyway here is my whole message Ok one bigger patch to DBI comming up I guess I can use the following

Re: Raising the dead Scrolling Cursors

2008-03-14 Thread Tim Bunce
() then just needs to have a concept of 'current row' and can use $sth-{Active} to tell if there may be more to fetch. This would be the same as bind_param_inout_array which is stubbed in but not implemented in DBI That's an (unfortunate) exception to the rule :) Tim.

Re: How to avoid bug reports from CPAN Testers who don't have DBI installed?

2008-03-10 Thread Tim Bunce
reject them or do you do anything more fanciful with them?) I get loads on the dbi-faq rt queue, but none for the dbi rt queue. I'd guess that's because I don't put the rt queue email address in the DBI docs. Tim.

Re: DBI patch for imp_data as SV

2008-01-31 Thread Tim Bunce
On Thu, Jan 31, 2008 at 10:22:54AM -0500, [EMAIL PROTECTED] wrote: It seems my last patch for DBD::Oracle revealed a bug in take_imp_data; when using perl's malloc implementation, you can get more SvLEN than you expect. This patches DBI to do the right thing. Thanks to John Scoles and Tim

(Fwd) DBD::DBM

2008-01-31 Thread Tim Bunce
Thanks. Applied as r10676. Tim. - Forwarded message from J M Davitt [EMAIL PROTECTED] - Date: Thu, 31 Jan 2008 12:21:50 -0600 From: J M Davitt [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: DBD::DBM DBD::DBM::Table::push_names should return instead of 'next unless $self

Re: DBI patch for imp_data as SV

2008-01-31 Thread Tim Bunce
Applied, with thanks. Tim. On Thu, Jan 31, 2008 at 12:47:21PM -0500, [EMAIL PROTECTED] wrote: OK, here is the correct patch. -Jeff -Original Message- From: Tim Bunce [mailto:[EMAIL PROTECTED] Sent: Thursday, January 31, 2008 12:23 PM To: Jeffrey Klein Cc: dbi-dev@perl.org

Re: DBD::Oracle impdata/threads patch

2008-01-25 Thread Tim Bunce
if only someone would write an Apache::DBI::Pool for mod_perl2... Tim.

Re: ANNOUNCE: DBD::Oracle 1.20 Release Candidate

2007-12-18 Thread Tim Bunce
My point was really that it should just work and the fact it doesn't suggests problems with your tool chain. Tim. On Tue, Dec 18, 2007 at 11:11:12AM -0500, Richard T Malafa wrote: To All, This seems like a good suggestion by Tim on having the compilier/linker ignore errors with Weak

Re: ANNOUNCE: DBD::Oracle 1.20 Release Candidate

2007-12-13 Thread Tim Bunce
Google suggests that Jv_registersClasses is a 'weak symbol' so shouldn't cause errors if undefined. That suggests there's a problem with your compiler/linker configuration. Tim. On Thu, Dec 13, 2007 at 03:18:16PM -0500, Richard T Malafa wrote: Alex, I went over the information again

Help with failing DBI-1.601 t/80proxy.t tests

2007-11-16 Thread Tim Bunce
/dbi/trunk/t/80proxy.t and replace their current t/80proxy.t file with it, then rerun the tests and report what it says. Thanks! Tim.

Potential security risk in drivers that set UTF8 flag without checking validity

2007-11-16 Thread Tim Bunce
binary data into the field). This was not tested at T-DOSE, but a quick look at the source code makes me think that while DBD::SQLite may be vulnerable (uses SvUTF8_on without checking), DBD::mysql (uses sv_utf8_decode) and DBD::Pg (uses is_utf8_string) are probably not. Tim.

(Fwd) FAIL DBI-1.601 i486-linux-gnu-thread-multi 2.6.22-3-amd64

2007-11-14 Thread Tim Bunce
into? Tim. - Forwarded message from Nigel Horne [EMAIL PROTECTED] - This is a computer-generated report for DBI-1.601 on perl-5.8.8, created automatically by CPAN-Reporter-1.05 and sent to the CPAN Testers mailing list. t/80proxy.# failed test 108 at line 389 (Unexpected

Re: Help with DBI::DBD interface

2007-11-09 Thread Tim Bunce
found a number of comments from Tim about DBD::mysql some of them may seem to apply to DBD::ODBC too (see http://www.mail-archive.com/dbi-dev@perl.org/msg04725.html). Specifically: DBIc_ERR and DBIc_ERRSTR, and DBIc_STATE should not be set directly. which DBD::ODBC seems to do quite

Announce: DBI 1.601 release candidate 1

2007-10-17 Thread Tim Bunce
caching to *any* (gofer-compatible) application by just setting an environment variable: DBI_AUTOPROXY='dbi:Gofer:transport=null;cache=1' I'd appreciate any and all testing so I can make a full release this week. Tim.

Re: patch to DBD-Oracle to allow faster fetch from REF CURSORs

2007-10-03 Thread Tim Bunce
On Fri, Sep 28, 2007 at 12:42:24PM -0400, Biswadeep Chowdhury wrote: Hello Tim, I have modified the patch taking into account your comments - Array fetch has been enabled for nested cursors too, in addition to ref cursors. - Array fetch is enabled by default (not for regular selects

Re: patch to DBD-Oracle to allow faster fetch from REF CURSORs

2007-09-22 Thread Tim Bunce
On Sat, Sep 22, 2007 at 01:22:50AM +0530, Biswadeep Chowdhury wrote: I have been looking for a fix for more than a year and have found none. Have you asked Oracle? Tim.

Re: patch to DBD-Oracle to allow faster fetch from REF CURSORs

2007-09-20 Thread Tim Bunce
cache size (ideally calculated the same way the default row cache is sized), but I'd rather not have to apply the patch at all. Before applying a large workaround we should be quite sure there isn't a simple fix via the OCI API. Tim. Biswa On 9/19/07, Alexander V Alekseev [EMAIL PROTECTED

Re: [patch] (final) DBD::Oracle - Support for standard array binds.

2007-09-11 Thread Tim Bunce
, ... ) die got null if !$ary; (I'll admit I've made that rather terse, but that's not the point here.) Tim.

Re: [patch] (final) DBD::Oracle - Support for standard array binds.

2007-09-11 Thread Tim Bunce
On Tue, Sep 11, 2007 at 02:15:27AM +0400, Alexander V Alekseev wrote: On Mon, 10 Sep 2007, Tim Bunce wrote: There's no need for all that. You could just do this: $sth-bind_param_inout(:mytable, [EMAIL PROTECTED] , 10 , ... ) Don't you think, it's better to use the first format

Re: [patch] (final) DBD::Oracle - Support for standard array binds.

2007-09-10 Thread Tim Bunce
. And, for the same reason, I'll restate that the DBI patch is neither needed nor appropriate. bind_param_inout() takes a reference to the value. In this case that value is also a reference. All is well. Tim.

Re: DBD [feature request] : Need to bind_param_inout array references.

2007-09-07 Thread Tim Bunce
); $sth-bind_param_inout(:foo, \$foo); The kind of value has changed but bind_param_inout() is still passed a reference to that value for the same reason: it may modify it. Tim.

Re: DBD::Proxy - fix rows() for fetch()

2007-08-23 Thread Tim Bunce
Thanks Philip. I've applied it, with just a couple of changes. The first is cosmetic, the second fixes a bug when proxy_rows is zero. Any chance you could write some tests for this? Tim. --- lib/DBD/Proxy.pm(revision 9871) +++ lib/DBD/Proxy.pm(working copy) @@ -593,8 +593,7

Re: DBD::Oracle and execute_for_fetch()

2007-08-23 Thread Tim Bunce
Sounds like a good idea. Patches welcome :) Tim. On Tue, Aug 21, 2007 at 12:10:56PM -0400, Sir Woody Hackswell wrote: Hello! I was wondering if it would be possible to pass a reference to an array or hashes to execute_for_fetch() in DBD::Oracle. Right now, a ref to array of arrays is passed

Re: Registering vt_ prefix for Vertica database

2007-08-07 Thread Tim Bunce
Applied. Thanks. Tim. On Tue, Aug 07, 2007 at 09:29:03AM -0400, Peter Macko wrote: Index: DBI.pm === --- DBI.pm(revision 9822) +++ DBI.pm(working copy) @@ -348,6 +348,7 @@ tmplss_ = { class = 'DBD::TemplateSS

Re: DBD::Proxy - two small bugs with patches

2007-08-07 Thread Tim Bunce
incomplete. fetch typically fetches batches of rows. It looks like your patch would make $sth-rows return the size of the most recent batch, typically 20. I may be overlooking something as I'm out of touch with the code. Let me know what you think. Tim. Have a great day ! Philip Dye Senior

Re: [OSCON] Informal BOF @ OBF

2007-07-25 Thread Tim Bunce
. (That way I can be suitably lubricated before my talks...) Tim.

Re: Announce: New DBI FAQ - please try it out

2007-07-18 Thread Tim Bunce
On Wed, Jul 18, 2007 at 07:09:29AM +, H.Merijn Brand wrote: On Wed, 18 Jul 2007 00:33:10 +0100, Tim Bunce [EMAIL PROTECTED] wrote: On Tue, Jul 17, 2007 at 06:26:00PM -0400, Robert wrote: On 7/17/07, Tim Bunce [EMAIL PROTECTED] wrote: On Tue, Jul 17, 2007 at 01:24:20PM +

Announce: New DBI FAQ - please try it out

2007-07-17 Thread Tim Bunce
Bob Hicks has helped get this setup and has kindly offered to act as editor and help coordinate contributions. Thanks Bob. Take a look at http://dbi.tiddlyspot.com and let us know what you think. Tim.

Re: Announce: New DBI FAQ - please try it out

2007-07-17 Thread Tim Bunce
On Tue, Jul 17, 2007 at 01:24:20PM +, H.Merijn Brand wrote: On Tue, 17 Jul 2007 14:07:59 +0100, Tim Bunce [EMAIL PROTECTED] wrote: Bob Hicks has helped get this setup and has kindly offered to act as editor and help coordinate contributions. Thanks Bob. Take a look at http

Re: Announce: New DBI FAQ - please try it out

2007-07-17 Thread Tim Bunce
On Tue, Jul 17, 2007 at 06:26:00PM -0400, Robert wrote: On 7/17/07, Tim Bunce [EMAIL PROTECTED] wrote: On Tue, Jul 17, 2007 at 01:24:20PM +, H.Merijn Brand wrote: On Tue, 17 Jul 2007 14:07:59 +0100, Tim Bunce [EMAIL PROTECTED] wrote: Bob Hicks has helped get this setup and has

Re: Why does DBI-connect() die if no DSN is present?

2007-07-16 Thread Tim Bunce
a driver to use then there's no 'last handle'. Tim. p.s. It probably be faked with a dummy handle but doesn't seem worth the effort.

Re: Maintenance of DBD::ODBC

2007-06-28 Thread Tim Bunce
On Wed, Jun 27, 2007 at 11:59:17AM +0100, Martin Evans wrote: Tim Bunce wrote: Anyone know if Jeff Urlwin is still around, or has an upto date email address? The last one I have is the esoftmatic.com one and the last few times I used it I did not get a response. As I said on dbi-users

Re: [Fwd: Re: DBI V 1.58 under Strawberry Perl]

2007-06-28 Thread Tim Bunce
the XS_VERSION_BOOTCHECK macro. So it's a bug in Strawberry Perl. (I seem to recall noting this before.) Could you report it to them? Tim.

Re: DBI V 1.58 under Strawberry Perl

2007-06-27 Thread Tim Bunce
On Wed, Jun 27, 2007 at 01:20:25AM -, Ron Savage wrote: Hi Tim All tests are successfult, but I get these warnings: Perl.c: In function `boot_DBD__Perl': Perl.c:1180: warning: unknown conversion type character `_' in format Perl.c:1180: warning: too many arguments for format DBI.c

Maintenance of DBD::ODBC

2007-06-27 Thread Tim Bunce
Anyone know if Jeff Urlwin is still around, or has an upto date email address? Anyone interested in being a co-maintainer of DBD::ODBC (I'm looking your direction, Martin ;-) Tim. On Tue, Jun 26, 2007 at 11:22:24PM +0200, Alexander Foken wrote: Has Jeff Urlwin disappeared from the Perl world

Re: Announce: DBI-1.57 RC2 (aka DBI-1.56_92)

2007-06-18 Thread Tim Bunce
ahead with releasing DBI 1.57 (I won't announce it to dbi-announce for a couple of days, just in case). Thanks John. Tim.

Re: Announce: DBI-1.57 RC2 (aka DBI-1.56_92)

2007-06-18 Thread Tim Bunce
On Mon, Jun 18, 2007 at 12:23:02PM -0400, John Scoles wrote: What I can do is try from a clean active perl install if you want me to? Would be good if you could. Try with http://search.cpan.org/~timb/DBI-1.57/ and double check you're env vars. Thanks! Tim. - Original Message - From

Re: Announce: DBI-1.57 RC1 (aka DBI-1.56_91)

2007-06-15 Thread Tim Bunce
or three. Tim.

Announce: DBI-1.57 RC2 (aka DBI-1.56_92)

2007-06-15 Thread Tim Bunce
As usual, I'd appreciate any and all testing you can do. Thanks! Tim.

Re: Announce: DBI-1.57 RC2 (aka DBI-1.56_92)

2007-06-15 Thread Tim Bunce
John. Anyone else seeing this behaviour? Tim. --- DBI.xs (revision 9655) +++ DBI.xs (working copy) @@ -4172,6 +4172,7 @@ SvROK(method) ? SvRV(method) : method, t1, t2 ); +warn(dbi_profile %d, gimme=%d, SvOK(leaf), GIMME_V); (void)cv; if (GIMME_V

Re: Announce: DBI-1.57 RC2 (aka DBI-1.56_92)

2007-06-15 Thread Tim Bunce
On Fri, Jun 15, 2007 at 02:52:12PM -0400, John Scoles wrote: I think you mean ftp://ftp.funet.fi/pub/languages/perl/CPAN/authors/Tim_Bunce/DBI-1.56_92.tar.gz D'oh. Yes, thanks John. Tim. - Original Message - From: Tim Bunce [EMAIL PROTECTED] To: dbi-dev@perl.org Sent: Friday

Re: private_attribute_info

2007-06-14 Thread Tim Bunce
any of the other DBDs implement it yet. Do you know of one that is using it. I don't think any do yet. It's used by Gofer. Without it driver-private attributes won't work by default. (Gofer has some fallback data built-in for a few driver, but DBD::Oracle isn't one of them.) Tim.

Re: Announce: DBI-1.57 RC1 (aka DBI-1.56_91)

2007-06-14 Thread Tim Bunce
tests of 16. Can you look into that one for me? DBI::ProfileDumper::Apache is part of the distribution. Is it missing in your source tree? Thanks John. Tim. --- t/19fhtrace.t (revision 9640) +++ t/19fhtrace.t (working copy) @@ -106,10 +106,12 @@ package MyFancyLogger; +use

Re: Clarification on DBI

2007-06-13 Thread Tim Bunce
I seem to recal that some old DBI and/or DBD::Oracle versions could loose the error message when connect fails. Tim. p.s. [EMAIL PROTECTED] is better than dbi-dev@perl.org for user issues like this. On Wed, Jun 13, 2007 at 02:18:08PM +0530, Shanmugam, Prabhu wrote: Hi *, Long back I

Announce: DBI-1.57 RC1 (aka DBI-1.56_91)

2007-06-13 Thread Tim Bunce
internally to store profile data but is unrelated to databases.) As usual, I'd appreciate any and all testing you can do. Thanks! Tim. p.s. Uploaded to CPAN at 13 Jun 2007 16:45:35 GMT. May take a few hours or more to reach whatever mirror you use.

Re: Should a statement handle 'work' after the database handle is disconnected?

2007-06-11 Thread Tim Bunce
or statements? I don't think so. The bottom line is that it's up to the driver and the underlying database API. Tim.

Re: Updating to DBI 1.55 breaks DBD::DB2 due to change in DBIc_CACHED_KIDS

2007-05-22 Thread Tim Bunce
macro definition into the compiler via a -D option. (See how the DBI's Makefile.PL sets DBI_NO_THREADS that way.) Tim. On Tue, May 22, 2007 at 04:21:54PM -0500, Swetha Patel wrote: Hi Mr. Bunce, Thanks for you help last time. The fix is working for DBIv1.55. Now, I am trying to make

Re: How to set $@ upon failure of eval

2007-05-18 Thread Tim Bunce
in perlembed (http://perldoc.perl.org/perlembed.html) And for good measure, I'll wave my hand in the direction of http://perldoc.perl.org/perlcall.html Tim.

Re: Updating to DBI 1.55 breaks DBD::DB2 due to change in DBIc_CACHED_KIDS

2007-05-15 Thread Tim Bunce
(*svp)) == SVt_PVHV) { hv_clear((HV*)SvRV(*svp)); } but you're likely to bump into similar issues in later versions. Driver.xst is the way to go. Tim. On Tue, May 15, 2007 at 10:56:13AM -0500, Swetha Patel wrote: Hi Mr. Bunce, I work for IBM, and was trying to update

Re: FAIL DBI-1.56 MSWin32-x86-multi-thread 4.0

2007-05-15 Thread Tim Bunce
/fail to cpantesters.perl.org) didn't recognise that the 'nmake' failed. It just went on and ran 'nmake test' and submitted the output of that to cpantesters.perl.org. That sure seems like a bug to me. Since you're a cpantester, could you submit it as a bug report to them? Thanks! Tim. p.s

Re: FAIL DBI-1.56 MSWin32-x86-multi-thread 4.0

2007-05-14 Thread Tim Bunce
Can someone with a windows box help look into this? Tim. On Mon, May 14, 2007 at 03:53:04PM +0100, Nigel Horne wrote: This distribution has been tested as part of the cpan-testers effort to test as many new uploads to CPAN as possible. See http://testers.cpan.org/ Please cc any replies

<    1   2   3   4   5   6   7   8   9   10   >