Displaying 1 result from an estimated 1 matches for "seek_row".
2006 Jun 15
1
Samba as a frontend to virtual files
...header followed by a
number of fixed-length records.
My idea was something like this:
1) Add a "foxproid" column to each PostgreSQL table.
2) When a client seek()s to an offset, convert that to a row number.
3) If the client read()s, do:
a) select * from pgtable where foxproid = $seek_row;
b) Convert the results into a string of bytes (this process is well
defined) and return them to the client.
4) If the client write()s, do:
a) Convert the string of bytes into an array of values (this process is
also well defined).
b) update pgtable set column1=array[0], etc...
5) If t...