Re: Book recommendations for database development



Basically it works like this. When a user enters data in via a TEdit box or something
you pass the value into your Class. You then serialize that object (Class instance) across
your TCP (TIndy) connection to your Application Server (a TCP socket server you
developed). That server reconstructs the data back into an object (does some work on
it maybe) to which it then serializes to your database vencdor (ms, mysql, firebird, etc..)

This serialization to the database vendor is easy using libraries that abstract the different
database vendors. There are somethings to be aware of course...



I am doing this same thing. I use kbmMemTable when I need to use datasets for reports or data aware grids and just fill it with my objects.

Speaking of which, does anyone have any experience with devExpress grid and binding it to either delphi tlist type structures or C++ SQL structures? I'd like to get rid of the dataset layer altogether.
.



Relevant Pages

  • Re: Problem with serializing business object instead of core objec
    ... > do this since the server does not need to know the type of object I am ... than you have to serialize the objects ... on the client and send them as binary data to the server. ... >>client and server assemblies. ...
    (microsoft.public.dotnet.framework.remoting)
  • Re: GC, Windows or Design problem?
    ... >> on the server? ... Did you use C# (or any other managed code) to do this on ... formatter used, for instance the xml serializer produces much larger files ... What formatter did you use to serialize? ...
    (microsoft.public.dotnet.languages.csharp)
  • RE: A cryptography solution for a client/server winforms app
    ... the client or server could then do the same after decrypting the data to ... determine if it would be safe to attempt to serialize it. ... encrypt the memory stream. ...
    (microsoft.public.dotnet.security)
  • Re: Serialization problem
    ... > Trying to serialize and desirialize an object. ... If both client and server will be running .NET, ... MyServerObject server = new MyServerObject; ...
    (microsoft.public.dotnet.languages.csharp)
  • Re: when to serialize/unserialize
    ... I'm doing this on a shared host box. ... It never occured to me I could serialize a class instance, ... I always parse the data structure and then punch values into the database, or versa visa from the database to the class instance. ...
    (comp.lang.php)