From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on polar.synack.me X-Spam-Level: X-Spam-Status: No, score=-1.1 required=5.0 tests=BAYES_00, PP_MIME_FAKE_ASCII_TEXT autolearn=no autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII X-Google-Thread: 103376,b82d7370b3fb6438 X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2003-08-15 16:04:15 PST Path: archiver1.google.com!news1.google.com!newsfeed.stanford.edu!news-spur1.maxwell.syr.edu!news.maxwell.syr.edu!small1.nntp.aus1.giganews.com!nntp.giganews.com!cyclone1.gnilink.net!spamkiller2.gnilink.net!nwrdny02.gnilink.net.POSTED!53ab2750!not-for-mail From: "Stephane Richard" Newsgroups: comp.lang.ada References: Subject: Re: Writing Ada records to MS Access X-Priority: 3 X-MSMail-Priority: Normal X-Newsreader: Microsoft Outlook Express 6.00.2800.1106 X-MIMEOLE: Produced By Microsoft MimeOLE V6.00.2800.1106 Message-ID: Date: Fri, 15 Aug 2003 23:04:14 GMT NNTP-Posting-Host: 129.44.80.245 X-Complaints-To: abuse@verizon.net X-Trace: nwrdny02.gnilink.net 1060988654 129.44.80.245 (Fri, 15 Aug 2003 19:04:14 EDT) NNTP-Posting-Date: Fri, 15 Aug 2003 19:04:14 EDT Xref: archiver1.google.com comp.lang.ada:41540 Date: 2003-08-15T23:04:14+00:00 List-Id: Hi Tom, based on the code in the URL that he gave you, you'd just need to replace: QueryString : Char_Array := To_C("Select * from CallList"); with QueryString : Char_Array := To_C("Insert Into CallList (FieldName1, FieldName2) values (NumberValue1, 'StringValue2') "); Depending on the structure of CallList, which I couldn't see :-). and you should be un business to do your insert -- St�phane Richard Senior Software and Technology Supervisor http://www.totalweb-inc.com For all your hosting and related needs "Tom Moran" wrote in message news:iEb%a.122765$Oz4.25430@rwcrnsc54... > > > Chad R. Meiners wrote: > > In an NT-type system you should have a control panel icon that allows you to > > setup up ODBC connections. Setup a ODBC connection to an Access database. > > Use one of packages that allow you to bind to ODBC to open the connection. > > Build the tables and records using the SQL commands. > > > > See > > http://www.adapower.com/os/odbc.html > > for an example of how to use the win32 ODBC binding. > > > > -CRM > > > > > That page shows reading ("select"). Can you point to a working > example of writing/updating? >