Results 1 to 20 of 20

Hybrid View

Previous Post Previous Post   Next Post Next Post
  1. #1
    Android C3P0 finalista's Avatar
    Join Date: Jul:2009
    Location:
    Posts: 948

    RAD ( Firebird )

    ,

    - Click
    , , ( - )
    !

  2. #2
    Registered User
    Join Date: Aug:2006
    Location:
    Posts: 4,052
    - freepascal. Firebird.

    - , , in-house sqlite

  3. #3

  4. #4
    Executor Lan's Avatar
    Join Date: Nov:2005
    Location:
    Posts: 3,304
    " - Click"
    I mourn thee by dusk | I mourn thee by dawn
    Crave for thy gloss | to seek the silent glades beyond

  5. #5
    Registered User 's Avatar
    Join Date: Feb:2006
    Location:
    Posts: 653
    Quote Originally Posted by Lan View Post
    " - Click"

  6. #6
    Android C3P0 finalista's Avatar
    Join Date: Jul:2009
    Location:
    Posts: 948
    Quote Originally Posted by View Post
    , RAD , ....
    ...
    , window / form ...
    ? - EVENT on click.
    DBGrid, / ....
    ...., TObject, - .
    , / .
    .

    Lazarus + Firebird, - - , , ...

    sqlite DOS- ....
    MS VC 2008 EXPRESS + MS SQL SERVER 2008, , Visual C .

  7. #7
    Registered User
    Join Date: Oct:2006
    Location: Plovdiv
    Posts: 305
    Quote Originally Posted by finalista View Post
    Lazarus + Firebird, - - , , ...
    Delphi 6-7 .NET (C#/C++) "" . C# a C++.
    prepBut nI vrbLike adjHungarian! qWhat's artThe adjBig nProblem?

  8. #8
    XaMaB's Avatar
    Join Date: Nov:2001
    Location:
    Posts: 20,387
    VB style...
    : XaMaB; . 0.42

    In God we Trust (all others must submit a X.509 certificate). , ()

  9. #9
    Registered User
    Join Date: Oct:2006
    Location: Plovdiv
    Posts: 305
    RAD / - .

    zstoev VS Express + MSDE. 2 # Delphi - .
    prepBut nI vrbLike adjHungarian! qWhat's artThe adjBig nProblem?

  10. #10
    Registered User 's Avatar
    Join Date: Feb:2006
    Location:
    Posts: 653
    MySql .NET ( VS Express).
    DataGridView, , ListView .. .
    Off. , . Mark as answered :P, mvp

  11. #11
    Android C3P0 finalista's Avatar
    Join Date: Jul:2009
    Location:
    Posts: 948

    -
    -
    - Microsoft Visual C# 2008 Express Edition

    ShortCut Desktop
    - My first Project ....
    OnLine Help - Window Form, .. - ...
    , Visual C#

  12. #12
    Registered User kct's Avatar
    Join Date: Jul:2005
    Location: Sofia
    Posts: 160
    .
    Lenovo x220

  13. #13
    Modderhead
    Join Date: Nov:2005
    Location:
    Posts: 4,469

  14. #14
    Android C3P0 finalista's Avatar
    Join Date: Jul:2009
    Location:
    Posts: 948
    Quote Originally Posted by knobel View Post
    , Turbo Delphi , , .
    Databases ....

  15. #15
    Registered User
    Join Date: Oct:2006
    Location: Plovdiv
    Posts: 305
    Quote Originally Posted by knobel View Post
    , ( 10 ) Embarcadero CodeGear Trial Delphi 2010 Trial Turbo Delphi .


    : http://www.turboexplorer.com/downloads

    Download fully functional trials of the latest rapid application, Web and Java development tools
    Turbo Delphi 2006, Turbo C++ 2006, and JBuilder Turbo 2008 are no longer available. You can download a free 30-day trial version of the latest Delphi, C++Builder, and JBuilder products and learn more about them using the links below.
    .
    Last edited by DiadoMraz; 24th October 2009 at 05:25.
    prepBut nI vrbLike adjHungarian! qWhat's artThe adjBig nProblem?

  16. #16
    Modderhead
    Join Date: Nov:2005
    Location:
    Posts: 4,469


    Turbo Delphi 2006, Turbo C++ 2006, and JBuilder Turbo 2008 are no longer available
    , , ... , , .

  17. #17
    Android C3P0 finalista's Avatar
    Join Date: Jul:2009
    Location:
    Posts: 948
    MS VC# 2008 Express Edition Firebird ?
    , Firebird.

  18. #18

  19. #19
    Android C3P0 finalista's Avatar
    Join Date: Jul:2009
    Location:
    Posts: 948
    DDEX Provider for Visual Studio
    Readme.txt - :
    1. Install FirebirdClient into the GAC.
    ---------------------------------------
    You can use gacutil utility to do this or to check whether it's correctly installed.
    The gacutil show you also the signature for assembly, that will be used later.

    2. Modify machine.config file.
    ------------------------------
    Modify it like this (for 64bit systems you have to edit "32bit version" of this file,
    because Visual Studio is 32bit, but there's no problem with editing the "64bit version" too):

    <configuration>
    <configSections>
    ...
    <section name="firebirdsql.data.firebirdclient" type="System.Data.Common.DbProviderConfi gurationHandler, System.Data, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
    ...
    <configSections>
    ...
    <system.data>
    <DbProviderFactories>
    ...
    <add name="FirebirdClient Data Provider" invariant="FirebirdSql.Data.FirebirdClie nt" description=".Net Framework Data Provider for Firebird" type="FirebirdSql.Data.FirebirdClient.Fi rebirdClientFactory, FirebirdSql.Data.FirebirdClient, Version=%Version%, Culture=%Culture%, PublicKeyToken=%PublicKeyToken%" />
    ...
    </DbProviderFactories>
    </system.data>
    </configuration>

    And substitute (these informations you can find using gacutil):
    - %Version% with the version of the provider assembly that you have in the GAC.
    - %Culture% with the culture of the provider assembly that you have in the GAC.
    - %PublicKeyToken% with the PublicKeyToken of the provider assembly that you have in the GAC.

    Note:
    Notice, that in configSections there isn't signature of FirebirdClient,
    but the signature of assembly from framework.

    3. Import registry file.
    ------------------------
    There's a couple of *.reg files in installation. There are files for 32bit and for 64bit system,
    so select appropriate version for your system. There are also files in "withSDK" directory.
    These can be used for Visual Studio with VS SDK installed.
    The files not in this directory are for systems without Visual Studio SDK
    (it's *not* the .NET FW SDK!) and it's probably the best choice for a lot of developers.
    The selected registry file needs be modified to set the correct paths.
    To do this, substitute %Path% in the file with path for the DDEX files,
    where you copyied them in step 0 (remember to backslash the backslash character).

    IMPORTANT: The DDEX provider didn't work with Express editions of Visual Studio.
    Last edited by finalista; 25th October 2009 at 03:51.

  20. #20
    Registered User
    Join Date: Oct:2006
    Location: Plovdiv
    Posts: 305
    - . IBExpress - .

    (.. .net) , database project - , .
    prepBut nI vrbLike adjHungarian! qWhat's artThe adjBig nProblem?

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  

Copyright © 1999-2011 . .
iskamPC.com | mobility.BG | Bloody's Techblog | | 3D Vision Blog |