New in 16.12 (Upcoming)
================
1) Server variables can be accessed as DATAs of the connection object.
Examples:
- Code: Select all Expand view
? oCn:max_allowed_packet
2) Built-in MySql functions can be used like methods of connection object, using Harbour variables as parameters
Examples:
- Code: Select all Expand view
? oCn:DATEDIFF( Date(), dOldDate )
? oCn:UTC_TIMESTAMP()
3) Full table rowsets can be opened as DATAs of the connection object.
Examples:
- Code: Select all Expand view
oRs := oCn:customer
XBROWSER oRs
XBROWSER oCn:states FASTEDIT
4) New METHOD HideServer()
Normally we can find the names of the server and user by oCn:cServer and oCn:cUser.
Password can never be accessed.
Now, if oCn:HideServer() is executed, even the server-name and user-name can not be accessed from the application program.
5) New DATAs IsMySql and IsMariaDB
Whether the connected server is MySql server or MariaDB server.
6) New DATA nVersion: Server version in Numeric value
Eg Usage:
- Code: Select all Expand view
If oCn:IsMariaDB or oCn:nVersion >= 5.63
// do something
endif