<i><font color="#663300">How would i go about adding data to a memo field in a fox pro table from a JSP using an SQL Statement. How do i later retrive this same data.</font></i>
You'd add it the same way as any other field: either with INSERT INTO [table] (field1, ..., fieldN), VALUES (val1, ..., valN), or using UPDATE [table] SET field1=val1, ..., fieldN=valN WHERE [key]=[keyvalue]. You'd also retrieve it using a standard SELECT statement.
<font color="#cc0000"> ___/ / __/ / ____/</font> Ed Leafe ©2002 Ed Leafe |