The Hospitality Survey App template that Embarcadero has released for Delphi 10.2 Tokyo through their GetIt platform is quite extensive. I have put together a developer guide video for the project which explains more in depth. The video explains each of the four different projects that make up the Hospitality Survey App. These projects include:
A client app built with FireMonkey for Android, IOS, OSX, and Windows where users can fill out survey information.
A we...
Embarcadero has released a Hospitality Survey App template for Delphi 10.2 Tokyo through their GetIt platform. The Hospitality Survey App consists of four different projects. A client app built with FireMonkey for Android, IOS, OSX, and Windows where users can fill out survey information. A web app built with AngularJS for viewing survey stats. A REST server built with RAD Server for Windows and Linux. And a setup app which is used to configure the whole system. You can customize the questi...
Frage: Ich nutze ein lokal installiertes InterBase. Ich möchte über Datenbankzugriffskomponenten darauf zugreifen. Aber sowohl FireDAC, als auch InterBase Express/IBX geben mir diese Nachricht:
FireDAC:
InterBase Express/IBX:
Folgende Beobachtungen habe ich gemacht:
Das passiert nur in der IDE - In der IBConole kann ich auf die Datenbanken zugreifen
Die Dateien sind definitiv vorhanden
Benutzernamen und -kennwort habe ich richtig eingegeben
Stelle ich in IBX auf "Remote" um (mit "lo...
In den nächsten Tagen und Wochen bin ich (sind wir) wieder unterwegs. Vor Ort, oder auch virtuell:
Zuerst für die SchnellentschlossenenZwei Webinare diese Woche InterBase Einführung mit UDFs und pessimistischem LockingAnmeldung (Dienstag, morgen!):https://register.gotowebinar.com/register/7820114109221219843Tools aus GetIt: Beyond Compare & CodeSite ExpressAnmeldung (Donnerstag):https://register.gotowebinar.com/register/3498991630619743747Beide um 10:00 Uhr morgens
Forentage 2017 in...
In general, there is no difference between moving non-BLOB and BLOB fields into an InterBase database, so any technique may be used, depending on your needs:
1. One technique is to use two regular TFDQuery components; one TFDQuery will read with SELECT, and another will write with INSERT / UPDATE. The process is as follows:
1) Read the data from a FireDAC query into a RAD Studio, Delphi or C++ Builder application from a SQL Database.
2) Push the data via a FireDAC connection into an InterBase...
Frage: Ich vermisse die Funktion XYZ in InterBase. Warum gibt es die nicht?
Antwort: In der Tat gibt es einige Funktionen in InterBase (für die DML) in InterBase, die man vielleicht von anderen Datenbanken her kennt, die aber in InterBase nicht vorhanden sind.....
Aber es gibt eine (einfache!) Lösung: Man schreibt sich diese Funktion(en) selbst.
Ein gutes Video von meinem Kollegen Stephen Ball findet man dazu auch hier: https://www.youtube.com/watch?v=9bfaU5mdlaY
Daraus erstmal zwei wic...
Sometimes you have the need to create your InterBase database on the fly in code at runtime, for example, if a user downloads your application and runs the application for the first time, and your app needs to create and use a database with the application. On Single or Multi-Device platforms, this would save you from having to deploy the database file and also setup the paths for deployment reducing your upfront work.
From Connect to InterBase (FireDAC), looks like ...