Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations derfloh on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. Dunsany

    Unable to write from a Daemon to MsSQLServer

    I maked it fast. So there is just a TADOQuery component with the connection string, and your CoInitialize(nil) in ServiceCreate with a call to a timer. The OnTime procedure (of the timer) is writing the DB with the query. And of course a CoUnInitialize() in ServiceDestroy. Nothing else to declare...
  2. Dunsany

    Unable to write from a Daemon to MsSQLServer

    Query is simple as that (it's a test with Ms Northwind DB): var RegionID: integer; RegionDescription: string; begin RegionID:=5; RegionDescription:='Green grass & pretty girls !'; With ADOQuery2 do begin SQL.Clear...
  3. Dunsany

    Unable to write from a Daemon to MsSQLServer

    Sorry, i read too fast... But it still doesn't work.
  4. Dunsany

    Unable to write from a Daemon to MsSQLServer

    I've got an 'Undeclared Identifier', which Library use CoInitialize() ?
  5. Dunsany

    Unable to write from a Daemon to MsSQLServer

    Hi, I wrote a server application (with Delphi6) few month ago. When i decided to turn it into an Application Service, there were no trouble at all, except one: it doesn't write on MsSQLServer 2000. I Changed security properties (Windows & SQL Server) on my SQL server. My connection string is...

Part and Inventory Search

Back
Top