PHP code example of ticketsource / sql-anywhere-client
1. Go to this page and download the library: Download ticketsource/sql-anywhere-client library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
ticketsource / sql-anywhere-client example snippets
// Retornar em um array com idexação por numero e coluna
SQLAnywhereClient::FETCH_ARRAY;
// Retornar em um array com idexação por coluna
SQLAnywhereClient::FETCH_ASSOC; // Formato Padrão!
// Retornar em um array com idexação por coluna
SQLAnywhereClient::FETCH_OBJECT;
// Retornar em um array com idexação por linha de dados
SQLAnywhereClient::FETCH_ROW;
// Retornar em um array com idexação por colunas
SQLAnywhereClient::FETCH_FIELD;