Class to manager MYSQL for Harbour/xHarbour
Custom Search

martes, 31 de agosto de 2010

xcommand ( 1 part )

Tratare de seguir un orden logico para hablar de los xcommand creados
i will try fallow a logic order to talk xcommand

> SET
es recomendable usarse antes de hacer conexiones al host
it's recommended to be used before making connections to host

los valores en cursiva son el status por omision
cursiva values is default status
SET CASESENSITIVE ON/OFF = > D_SetCaseSensitive( lOnOff )
http://tdolphin.blogspot.com/2010/07/lowercasetablenames.html
-------------------------------------------------------------------
SET PADRIGHT ON/OFF => D_SetPadRight( lOnOff )
MySql retorna una cadena con el contenido de un campo, que puede variar de longitud de un registro a otro, esto significa que no siempre tendra la misma logitud con el que esta creado el campo
SET PADRIGHT es usado para completar con espacios hasta la longitud del campo.
MySql returns a string with the contents of a field, which can vary in length from one record to another, this means that there will always have the same length with which the field is created
PADRIGHT SET is used to fill with spaces to the length of the field.

ej.

Field_1 varchar( 30 )
MySql retornara una cadena con la logitud de la misma y no la longitud del campo, a menos que PADRIGHT sea "encendido"
MySQL returns a string with string's length and not the length of the field, unless is turned ON PADRIGHT

usar D_SetPadRight() sin argumentos para retornar status actual
to use D_SetPadRight() without argument to return current status
-------------------------------------------------------------------
SET LOGICALVALUE ON/OFF => D_LogicalValue( lOnOff )
Activa o desactiva el uso de valores logicos por los valores 0 / 1 usados en MySql
Enables or disables the use of logical values for the values 0 / 1 used in MySql
usar D_LogicalValue() sin argumentos para retornar status actual
to use D_LogicalValue() without argument to return current status

No hay comentarios:

Publicar un comentario