Giter Club home page Giter Club logo

Comments (10)

machack666 avatar machack666 commented on August 22, 2024

If they have a consistent/fixed OID, then it shouldn't be a problem, I would expect. Without looking at it, I'm not sure that's definitively the case. (ISTR it has the type/oid mapping hard-coded in the module, but it's been a while since I've looked.)

from dbdpg.

davidfetter avatar davidfetter commented on August 22, 2024

If it's not fixed, is it reasonable to do catalog lookups based on EXTENSIONs found?

from dbdpg.

machack666 avatar machack666 commented on August 22, 2024

At what point? DBD::Pg connect? Cached per-handle? I would expect that this could fall apart unless you were caching/storing this info per DBH, as the same extension could have different OIDs depending on where you connected, so something simple like:

my $dbh1 = DBI->connect('dbi:Pg:dbname=database1', $user1, $pass1);
my $dbh2 = DBI->connect('dbi:Pg:dbname=database2', $user2, $pass2);

could introduce overhead both in connection time (if that's when we query/cache the data), or different/non-matching OIDs depending on the database/host queried (if we try to shared the data once per module initialization).

This is not to say that it'd be impossible, just there are real obstacles here.

from dbdpg.

machack666 avatar machack666 commented on August 22, 2024

Yeah, looking at the code, there's not really any way to do this dynamically; you could conceivably use pg_types without connecting to the database, and it is indeed a static struct in types.c.

from dbdpg.

davidfetter avatar davidfetter commented on August 22, 2024

pg_types_dynamic with a warning about the overhead? Caching per DBH seems reasonable. With slightly more effort, probably as a separate feature, pg_types_dyname->{when} could be specified.

from dbdpg.

machack666 avatar machack666 commented on August 22, 2024

What are you looking for specifically about that interface?

from dbdpg.

machack666 avatar machack666 commented on August 22, 2024

It would need to be created as a DBH-level method, not a global function.

from dbdpg.

davidfetter avatar davidfetter commented on August 22, 2024

Oh, good point.

from dbdpg.

davidfetter avatar davidfetter commented on August 22, 2024

Come to think of it, everything we've discussed here seems like a DBH-level matter. If people want common attributes for all DBH's in their space, they know how.

from dbdpg.

machack666 avatar machack666 commented on August 22, 2024

They are indeed free to query the system tables. :-) Some specific helper methods though might be nice, similar to ->table_info() and the like.

from dbdpg.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.