Creation of a Travel Control System with Firebird in #Delphi
Original article is in Portuguese, Google Translatation is here
Original article is in Portuguese, Google Translatation is here
With Visual Web Developer, from Microsoft you need to follow these steps
Firebird 2.5 architecture comparison sheet is available via this blog
http://blog.upscene.com/thomas/index.php?entry=entry091016-133211
This is based on Dmitry’s presentation and some private discussions
For another good overview you can read Douglas Tosi blog
Claudio answered to a “new feature” request
This command exists in all Firebird versions:
SQL> set stats on;
SQL> select 1 from rdb$database;
CONSTANT
============
1
Current memory = 10135512
Delta memory = 164708
Max memory = 10263380
Elapsed time= 0.11 sec
Buffers = 2048
Reads = 12
Writes 0
Fetches = 157
SQL>
Elapsed time is the time the query needed to complete. Run it a second time and the elapsed time is only 0.02 seconds because metadata is already loaded.
If you put into comment of column #PK_GEN#, then FirebirdClient will … read more.
Thomas started a new blog category dedicated to Firebird/Django and he is already impressed about it .. And he really contributed back to the backend
Although not being a Python Geek, I gave Django a try, and I must admit, I’m impressed on how fast one can build a simple web-based master data management application with it. It’s pretty much defining an Django object model, which represents the tables, fields and relationships in your database. By enabling Django’s auto-generated admin site/area based on this model, this is all you need to access, delete, insert and update data in your database.
Jiri is getting more and more support request from people who try to connect to Interbase ! with Firebird .net client.The short answer is that Firebird driver is for Firebird database only and we can’t support Interbase too
Wondering what changed on Earth in last, say, four weeks. I’m getting more than average (read: more than zero) emails, asking whether FirebirdClient works with InterBase. Similarly in mailing list.
The issue, typical in Firebird, consist in the fact that, after you insert a new record with an autoincrement field in a datagridview, we have to exit from the application to be able to edit the new inserted record.
To solve this issue you have to proceed this way