Beefy Boxes and Bandwidth Generously Provided by pair Networks
good chemistry is complicated,
and a little bit messy -LW
 
PerlMonks  

Re: SQL table recreation

by simonm (Vicar)
on Jan 05, 2005 at 18:13 UTC ( [id://419684]=note: print w/replies, xml ) Need Help??


in reply to SQL table recreation

I'm not sure which way is best, but there are certainly many ways to do this from Perl. One example, using my DBIx::SQLEngine module:
my $sqldb = DBIx::SQLEngine->new( $dbi_dsn, $user, $passwd ); push @sql, [ $sqldb->sql_create_table( $tablename, $sqldb->detect_table( $tablename ) ) ]; push @sql, $sqldb->visit_select( table => $tablename, sub { [ $sqldb->sql_insert( values => (shift) ) ] } );

The @sql array now contains a create table and several insert statements, each as a reference to an array of a SQL statement followed by a number of placeholder parameter values.

(This is not specific to MS SQL Server, so you'll probably achieve better results with one of the Windows-specific solutions others have posted, but I thought it'd be good to include a Perl implementation.)

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others making s'mores by the fire in the courtyard of the Monastery: (3)
As of 2024-04-26 02:38 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found