[PHP] MSSQL7

2001-05-23 Thread Daniel Guerrier
Is it possible to import one MSSQL7 DB to another if they were installed using different sort orders? If yes, how? __ Do You Yahoo!? Yahoo! Auctions - buy the things you want at great prices http://auctions.yahoo.com/ -- PHP General Mailing List

Re: [PHP] PHP, MSSQL7 & Transactions

2001-05-06 Thread Manuel Lemos
Hello rememberthatstore.com, On 25-Apr-01 17:55:49, you wrote: >I am trying to implement transactions using PHP and MSSQL 7 (Microsoft). >Please tell me if there is a simple way of doing this, as there is for >Interbase or Oracle, using the appropriate functions.eg ***_rollback or >whatever.

Re: [PHP] PHP, MSSQL7 & Transactions

2001-04-25 Thread Frank M. Kromann
you just have to execute a statement starting and ending the transaction. BEGIN TRANSACTION COMMIT ROLLBACK Yuu send thes commands to the server with mssql_query() as any other SQL statement. - Frank > I am trying to implement transactions using PHP and MSSQL 7 (Microsoft). Please >tell me

[PHP] PHP, MSSQL7 & Transactions

2001-04-25 Thread rememberthatstore.com
I am trying to implement transactions using PHP and MSSQL 7 (Microsoft). Please tell me if there is a simple way of doing this, as there is for Interbase or Oracle, using the appropriate functions.eg ***_rollback or whatever. Regards Andrew