Jump to content

skyzoframe[hun]

Members
  • Content Count

    79
  • Joined

  • Last visited

Posts posted by skyzoframe[hun]


  1. 3 minutes ago, Squamis said:

    Yes, I can use stored procedures, macroses, .... This topic just a question for understanding - it is a bug or we can do something! 

    Just why a simple query can't be executed with standart functionality.

     

    I have no clue.


  2. After a while, I read these kinds of books. From  2016.

    - Expert Delphi By Paweł Głowacki
    - Delphi High Performance By Primož Gabrijelčič

    - Mastering Delphi Programming: A Complete Reference Guide By Primož Gabrijelčič
    - Delphi Cookbook - Third Edition By Daniele Spinetti, Daniele Teti
    - Delphi Programming Projects By William Duarte
    - Delphi GUI Programming with FireMonkey By Andrea Magni
    -- by Dalija Prasnikar
    Delphi Memory Management for Classic and ARC Compilers

    Delphi Event-based and Asynchronous Programming

    Now reading.: Delphi Thread Safety Patterns

     

    Because I am far from intelligence. I have to read. ˇˇ Are there any good books to read? What did I miss?


  3. 19 minutes ago, limelect said:

    Right now from my point of view as a programmer, I catch the screen of a

    program as a picture copy to clipboard saves to ADVrichedit so simple. 

    https://download.tmssoftware.com/Download/Manuals/TMS TAdvRichEditor.pdf

     

    image.thumb.png.b18ed2e1ef14ab772898706690a86016.png

     

    Or you can store pictures on a local drive, and only the picture name has to be in the database. Or use a custom table for blob fields and call only when you have to show the picture.


  4. I don't understand: why do you need so many big files, or blobs, in your database?

     

    by the way.:

     

    image.png.a805b9d344ed8986dd3bb85be658ba87.png

     

    They are the same drawings in different file formats. If I need to save something in database, I'll use a *.emf file.

     

    I only have one question: Can you reduce the file size somehow?


  5.  

    21 hours ago, Lars Fosdal said:

    Basically, it is an automatically incremented integer value which uniquely identifies the row, without having any other relation to the data in the row.

    You use these identity fields as primary keys for efficiently joining tables, and as unique id's for doing updates and deletions.

    There are any other ways to handle unique identities?


  6. CREATE DOMAIN IMAGE AS BLOB SUB_TYPE 0 SEGMENT SIZE 2048;

    After that, you can call your domain. You don't need to definite everything when creating your database table. I really like to use domains.

     

     'CREATE TABLE IF NOT EXISTS ENTRY( '+
        'Title VARCHAR2(60) NOT NULL, '+
        'UserN VARCHAR2(40), '+
        'Passw CHAR(64) NOT NULL, '+
        'URLpa VARCHAR2(100), '+
        'NickN VARCHAR2(20), '+
        'CustN VARCHAR2(20), '+
        'Notes VARCHAR2(400), '+
        'DateC DATE, '+
        'Icon IMAGE)'); 

     


  7. 15 hours ago, BennieC said:

    TListview item programmatically to display the image.

    Does it mean you want to create at runtime everything? Without using Live bindings?

     

    If you want to separately manage Types, Front-End, Back-End.

    Check the zip file at the bottom.

     

     

×