Tagged Questions
The sa-11 tag has no wiki summary.
5
votes
2answers
220 views
PDO + SqlAnywhere, its possible?
I would like use PHP PDO with SqlAnywhere, but don't have the driver on php site. Can I add a lib of sqlanywhere to use with PDO? ODBC is the last option.
3
votes
1answer
110 views
SQL Anywhere table length
how can I see the length of a table (in bytes) on SQL Anywhere? It's possible?
Thank you
2
votes
4answers
1k views
Sql COUNT Performance Question
Structure of Example table:
Id, Integer (PK)
Name, Varchar(100)
Description, Text
I need to know if exists difference in performance between:
SELECT COUNT(*) FROM Example;
and
SELECT COUNT(Id) ...
1
vote
3answers
184 views
Get the last children from database
My situation:
Table A
(
ID
Parent_Id
TimeStamp
)
The root has Parent_Id null and children has Id of its father.
I simple want to get all LAST children of every Table A.
Father and Children I don't ...