Beefy Boxes and Bandwidth Generously Provided by pair Networks
We don't bite newbies here... much
 
PerlMonks  

Re: Checking for DB table existence using DBI/DBD

by JamesNC (Chaplain)
on Oct 14, 2005 at 11:47 UTC ( [id://500208]=note: print w/replies, xml ) Need Help??


in reply to Checking for DB table existence using DBI/DBD

Learn about EXISTS ( you need to know it so you can do an update/insert statement in the same pass anyway ) On MSSQL/Sybase I would do something like:
IF EXISTS ( SELECT 1 FROM sysobjects where name = 'some_table' and typ +e = 'U' ) -- do this if true ( maybe an update here ) SELECT 1 ELSE -- do this if false ( maybe an insert here ) SELECT 0
You need to consult the docs as to how your database implements EXISTS which normally operates on a subquery and returns a boolean.
JamesNC

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://500208]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others wandering the Monastery: (6)
As of 2024-04-19 22:34 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found