[GB.DB.MYSQL]

* NEW: Added the function MySQL.CurrentTimestamp() that returns the Current
  timestamp from the server.

git-svn-id: svn://localhost/gambas/trunk@1437 867c0c6c-44f3-4631-809d-bfa615b0a4ec
This commit is contained in:
David Villalobos Cambronero 2008-06-26 18:01:30 +00:00
parent 6ca5126595
commit 79105c779e

View File

@ -174,3 +174,9 @@ Private Function Routines_Read() As _Routines
Return $Routines
End
Public Function CurrentTimestamp() As String
Return modMain.$Connection.Exec("SELECT CURRENT_TIMESTAMP")!CURRENT_TIMESTAMP
End