Tiburon: VCL DB Unicode Application with InterBase 2007
Everybody is talking about Tiburon (the next Delphi Version) and the new Unicode Support. Today i play for you with the Unicode Support and Interbase 2007. So let us quick build a InterBase Database and a Browser in Unicode.
First i create a new database in the InterBase with the following Script. I use in this example the ServerCharSet UTF8.
/******************************************************************************/
/* Generated 2008.02.19 17.07.2008 16:21:29 */
/******************************************************************************/
SET SQL DIALECT 3;
SET NAMES UTF8;
CREATE DATABASE ‘YourIpOurComputerName:C:\unicode_data.ib’
USER ‘SYSDBA’ PASSWORD ‘masterkey’
PAGE_SIZE 8192
DEFAULT CHARACTER SET UTF8;
/******************************************************************************/
/* Tables */
/******************************************************************************/
CREATE TABLE TBL_TEST (
ID INTEGER NOT NULL,
TEXT VARCHAR(100)
);
/******************************************************************************/
/* Primary Keys */
/******************************************************************************/
ALTER TABLE TBL_TEST ADD CONSTRAINT PK_TBL_TEST PRIMARY KEY (ID);
After this i create in Tiburon a new VCL Application.
After this i create a new shortcut in the Datanbase Manager

Give a Name for the new InterBase Connection

Modify the Connection for the Parameters


Cause we like to use Interbase with DBXpress we add in the uses are the Unit DBXInterbase.

Now we are adding on the TForm:
- SQLConnection
- SimpleDataSet
- DataSource
- DBNavigator
- DBGrid

On SQLConnection we change in the Objecinspector the Properties
- ConnectionName -> MyUnicode
- add in Params the servercharset UTF8
- set LoginPromt to False (if you like)


On your SimpleDataSet1 change the Properties:
- SQLConnection to your SQLConnection1
- DataSet->CommandText to select * from TBL_TEST
- Active-> True

Change also
- DataSource1: DataSet -> SimpleDataSet1
- DBNavigator1 & DBGrid 1: DataSource -> DataSource1
To automatic update to the InterBase Database add in the SimpleDataSet1 Event OnPost the following code:

Now let us save all, compile and start:

Ok let’s add some text. To get some fun characters (unicode) you can start the windows Program CharMap


You see the VCL works fine with the Combination Unicode and InterBase 2007.
Great Works CodeGear!!!
Regards Daniel Magin.
Possibly related posts: (automatically generated)
July 17, 2008 - Posted by dmagin | Embarcadero (CodeGear) stuff | | 3 Comments
3 Comments »
Leave a comment
-
XING
-
DelphiLive! 2009
Blogroll
-
Blog Stats
- 29,809 hits
Login
-
Member of
Delphifeeds- Jeff Atwood is wrong about performance July 4, 2009
- What do you want to hear? July 4, 2009
- Delphi 2009 Handbook on YouTube and Amazon Offer July 3, 2009
- Apache 2.2.x modules with FreePascal (Win32) July 3, 2009
- Create a Time Out Button / Entry Form in Delphi July 3, 2009
- Delphi Prism WPF Model View ViewModel Template July 2, 2009
- Delphi Prism WPF Model View ViewModel Template July 2, 2009
- Delphi's TListBox Items as Radio Buttons July 2, 2009
- Movie #55 - FTP Password Recovery July 2, 2009
- Did You Know - Embarcadero Beta Page July 1, 2009
- Quick review of old bugs fixed for Delphi July 1, 2009
- Word of the Day: BOGO July 1, 2009
- The road to Delphi 2009 - Part 1 (reprise) July 1, 2009
- Get TWICE the tools for your money! July 1, 2009
- An unprecedented offer, two tools for the price of one… July 1, 2009
Pages
Archives
-
Archives
- June 2009 (2)
- May 2009 (10)
- April 2009 (2)
- March 2009 (4)
- February 2009 (4)
- January 2009 (3)
- October 2008 (2)
- August 2008 (1)
- July 2008 (4)
- June 2008 (10)
- May 2008 (5)
- April 2008 (6)
-
Categories
-
RSS
Entries RSS
Comments RSS

[...] Tiburon: VCL DB Unicode Application with InterBase 2007 [...]
Pingback by Serge’s Technology View » Blog Archive » So it began: Tiburon in the news - July 21, 2008 | July 21, 2008 |
Hi,
sehr interessanter Artikel, nur irgendwie werden bei mir die Bildchen nicht angezeigt, nur kleine schwarze Balken.
MfG
ups i changing server is not so easy
thanks
it’s now fixed