Questions tagged as 'firebird'

1
answer

Accentuation php - firebird

I am making a web module for an old system that uses Firebird. I made the connection using the PDO, but when I make a query using some special character it does not return results. If you do not use a special character, the query works perfectly...
asked by 23.12.2016 / 23:59
2
answers

Doubts in web service

Personally I found the following webservice tutorial: link Looking at the tutorial I was a bit confused about it. 1- Should the web service be part of the Android application? For example I create a web service I put this web service...
asked by 19.05.2016 / 18:46
2
answers

Search with Inner join [closed]

I'm doing a search where the user enters the order ID and the system does return the request's observation, product code and qtd. And these data are arranged in 2 tables. (I did not create the bank, it already came ready) However, with my query...
asked by 20.10.2017 / 20:26
2
answers

Concatenate String in Firebird

How to concatenate String in Firebird? I'm trying like this: select ("00"||"01") AS TESTE from tabela I have tried with parentheses, no parentheses, with column name, without the column name ... it just will not ... is giving the fol...
asked by 12.08.2015 / 22:29
0
answers

C # login screen with firebird database with error

I'm doing a project with a firebird database but, at the time of authenticating the user, it is returning true even if there is no user registered in the database with the if (ER.HasRows) line, so it is not falling in else . I'm not...
asked by 15.06.2015 / 13:16
1
answer

Change column value in Firebird

I have a table with approximately 7 thousand records, I need to create a new column in this table but I would like all the old records to have the value 'S', when I try to create the column the fields get null value, passing as default ' S'. How...
asked by 07.12.2017 / 12:19
1
answer

View data in Array

I am doing a query in a database and I need to display the information on the screen, but searching one by one. I tried to do it by array, but it is not displaying the vector. Code: <?php $a = $_GET['a']; if($a == "buscar"){ $id = $_PO...
asked by 17.10.2017 / 17:24
2
answers

Error and doubts FireBird sql

I own this table code CREATE TABLE news ( id_news INTEGER NOT NULL, title VARCHAR(128) NOT NULL, slug VARCHAR(128) NOT NULL, text TEXT NOT NULL, PRIMARY KEY (id_news), KEY slug (slug) ); You are experiencing the f...
asked by 27.03.2018 / 16:30
2
answers

Firebird Query Select using same field twice

I have a field called patient_id, I want to create a select + - so select count(paciente_id where = 0), count(paciente_id where <> 0) from agenda I do not know, but I want to know the amount of items where patient_id is equal to zero...
asked by 06.10.2016 / 22:56
2
answers

Database error Missing Driver Name property

I'm doing a system in Delphi 2010 with Firebird 2.5 that I select a database and I need to pass the local path to my Database on my Sqlconnection. procedure TFormImportDados.btnBuscaArquivoClick(Sender: TObject); begin OpenDialog.Execute();...
asked by 04.07.2016 / 16:36