Created
January 24, 2014 10:59
-
-
Save deyvin/8595411 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$db = ibase_connect ('localhost:/usr/db/db.gdb', 'SYSDBA', 'masterkey'); | |
$tr = ibase_trans( IBASE_DEFAULT, $tr ); #abre a transação do firebird | |
$insert = "INSERT INTO CLIENTES (ID, NOME) VALUES (1, 'JOSE')"; | |
ibase_query($tr, $insert); | |
$insert = "INSERT INTO CLIENTES (ID, NOME) VALUES (1, 'JOSE')"; | |
ibase_query($tr, $insert); | |
ibase_commit($tr); #aqui ele commita a transação | |
ibase_rollback($tr); #caso queira cancelar as instruções basta chamar essa linha |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment