Questions tagged [uib]

UIB is a set of components to use Interbase and FireBird. These components were born from the need to use Interbase or FireBird indifferently as fast as possible in a Multithreading environment, a Server for example. UIB have a Borland Compliant conversion API for Interbase and FireBird.

UIB is a set of components to use Interbase and FireBird.

These components were born from the need to use Interbase or FireBird indifferently as fast as possible in a Multithreading environment, a Server for example. UIB have a Borland Compliant conversion API for Interbase and FireBird.

31 questions
6
votes
1 answer

How to use Firebird transaction isolation levels with UIB?

According to documents there are four transaction isolation levels in Firebird. However, as far as I know, there's no explicit isolation level selection in uib library (TUIBTransaction), but bunch of options for transactions. How I should use those?…
Harriv
  • 6,029
  • 6
  • 44
  • 76
6
votes
2 answers

Firebird error message "Unsuccessful execution caused by a system error that precludes successful execution of subsequent statements"

My application generates sometimes this kind of errors when accessing Firebird database: Unsuccessful execution caused by a system error that precludes successful execution of subsequent statements GDS Code: 335544726 - SQL Code: -902 - Error…
Harriv
  • 6,029
  • 6
  • 44
  • 76
3
votes
1 answer

How do I select multiple tooltip-trigger attributes?

I want to make an element show tooltip on tab focus as well as the default mousenter. Currently my focus works using tooltip-trigger="'focus'", but now the tooltip only opens on focus. I'd like it to also open on hover of the element. I'm currently…
user7814645
  • 139
  • 10
3
votes
0 answers

Parameter value from TUIBQuery gets truncated when read back for Database.Charset=csUTF8

I am working on an application built in Delphi 2010 that uses UIB to connect to a Firebird 2.5 database. The application has been running using the default character set for a long time, i.e. nobody gave character sets any special thought and it has…
Marian Aldenhövel
  • 677
  • 1
  • 6
  • 24
2
votes
2 answers

UI boostrap modal with component cause "One of template or templateUrl options is required." error

I have a separate component js uploadImage.js 'use strict' imageListApp.controller('uploadImageController', function ($scope, Upload) { var $ctrl = this; $ctrl.$onInit = function () { } $ctrl.ok = function (file) { …
interman
  • 141
  • 1
  • 2
  • 9
2
votes
2 answers

Cancel button click doesn't complete

When I open a modal dialog and without making a change, I click on cancel button, I expect the dialog to close. But in case I have a validation on the textbox currently in focus, the validation text still appears when the focus moves out of the text…
SoftEngi
  • 407
  • 4
  • 14
2
votes
0 answers

Stop Firebird modifying strings based upon Windows charset

I have an application (written in Delphi) using the 1.5.5 Firebird embedded engine. I am using this engine since the application works with currently deployed Firebird databases and newer embedded engines won't open the database files correctly (ODS…
Ritsaert Hornstra
  • 5,013
  • 1
  • 33
  • 51
1
vote
1 answer

How to break word in uib-typeahead dropdown?

I created uib-typeahead dropdown in my angularJs app. i display two attribute in uib-typeahead dropdown. i call API based on first name and api give response with object. i print first name and last name in dropdown. First name and last name. but it…
1
vote
0 answers

Angular bootstrap datepicker(uib-datepicker) not apply to new added elements

I have a filed with uib-datepicker that added to DOM with jQuery after page load. Now when I focus to field, datepicker not shown! create and append date picker field var dateInput = $compile("
1
vote
2 answers

get index of active tab

I would like to get the index of the active tab in the JS side. Here is my code: HTML:
D Sam
  • 77
  • 1
  • 2
  • 11
1
vote
0 answers

Stale data returned when re-running a query with an empty result

I am using uib in a Delphi 2010 application. I reuse a TUIBQuery component across several executions with different parameters. When a parameter-value returns an empty dataset access to the Fields returns stale data. Here is a pseudocode…
Marian Aldenhövel
  • 677
  • 1
  • 6
  • 24
1
vote
1 answer

Access violation in UIB EventCallback

With EurekaLog, I found this Access Violation in my application: 2.2 Address : 00404A77 2.5 Type : EAccessViolation 2.6 Message : Access violation at address 00404A77 in module 'MyApp.exe'. Write of address…
Harriv
  • 6,029
  • 6
  • 44
  • 76
1
vote
1 answer

Delphi 2010, UIB, Firebird: Duplicate Parameter names

I am using Delphi 2010 and UIB to access a Firebird database. I am trying to run the Query SELECT RECID FROM TABLE WHERE ((:DX = '') OR (DX=:DX)) AND ((:POSTCODE='') OR (POSTCODE=:POSTCODE)) Note, that I am using each…
Marian Aldenhövel
  • 677
  • 1
  • 6
  • 24
0
votes
1 answer

How to clear uib-typeahead dropdown list in angularjs

I using uib-typeahead. I am making api call when type something in uib-typeahead. I added cancel a icon next to my uib-typeahead text box to clear that text and dropdown values when I click on that cancel icon, but when I click on the cancel icon it…
0
votes
1 answer

How to reconnect to the same UIBDatabase + UIBTransaction after network-loss?

We have a Delphi7 + UIB + Firebird 2.5 application for pizzerias, working rock stable on wired networks. But on wifi, (working with Win8/Win10 TabletPCs,) if the connection is broken, UIBDatabase can not reconnect itself automatically. (We are…
SzakiLaci
  • 347
  • 1
  • 16
1
2 3