Search found 5 matches

by username
18.03.2006, 22:30
Forum: 6.5.1 (alpha) - 6.6.x (beta)
Topic: [MySQL] alter table:
Replies: 2
Views: 782

Code: Select all

ZQuery.ExecSQL;
by username
08.03.2006, 23:15
Forum: 6.5.1 (alpha) - 6.6.x (beta)
Topic: String escape in Delphi ?
Replies: 9
Views: 4556

in delphi

function CheckScapeString(const Value: string): string; var I: Integer; tmpStr: string; begin Result := ''; tmpStr := ''; for I := 1 to Length(Value) do if Value[I] in [ '''', '\', '"', ';'] then tmpStr := tmpStr + '\' + Value[I] else tmpStr := tmpStr + Value[I]; Result := tmpStr; end;
by username
18.02.2006, 19:29
Forum: Firebird
Topic: Problem with query and parameters (D3 + IB + Zeos)
Replies: 2
Views: 1978

Code: Select all

With TZIbSqlQuery Do 
Begin 
Close; 
Params.CreateParam(ftString, 'Name', ptInputOutput);
ParambyName('Name').AsString:= 'Value'; 
Open; 
End;
by username
02.01.2006, 22:30
Forum: MySQL
Topic: Problem with DBLookupComboBox
Replies: 7
Views: 3110

Hi, I had the same problem. This my tabla CREATE TABLE `cargos` ( `Id` SmallInt(6) NOT NULL auto_increment, `Cargo` varchar(50) NOT NULL default '', PRIMARY KEY (`Id`), UNIQUE KEY `Cargo` (`Cargo`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='Cargos de la Empresa'; change SmallInt(6) to Int(6)
by username
21.10.2005, 21:21
Forum: 6.1.5
Topic: How to save jpg image
Replies: 4
Views: 7493

Insert Image to Blob Field Database

Saludos iarthur.ora,

Por qué no intentas cambiar el tipo de campo de Blob a MediumBlob o LongBlob, sucede a veces que la imagen ocupa mucho espacio y solo estos últimos pueden almacenar.

Regards from Bolivia