Displaying 4 results from an estimated 4 matches for "abcdefghijklm".
Did you mean:
abcdefghijkl
2009 Aug 14
1
RODBC does not like table names >11/12 characters
...2 characters.
Here is the the pattern of my code, nothing spectacular:
library(RODBC)
channel2<-odbcDriverConnect('DSN=xxx')
#table names with up to 11 characters still work
sqlFetch(channel2, 'abcdefghijk')
#table names with 13 or more characters do not
sqlFetch(channel2, 'abcdefghijklm')
Fehler in odbcTableExists(channel, sqtable) :
?abcdefghijklm?: table not found on channel
I do not have any tables with 12 character names, to check where exactly
the borderline is. Of course, the table ?abcdefghijklm? exist on the
channel, even if I feed it directly t osqlFetch via
sq...
2018 Oct 30
2
Re: [PATCH nbdkit 4/4] Add floppy plugin.
...hort_base[j];
> + for (j = 0; j < 3; ++j)
> + checksum = ((checksum & 1) << 7) + (checksum >> 1) + lfn->short_ext[j];
> +
> + /* LFN support.
> + *
> + * Iterate in reverse over the sequence numbers. If the filename is:
> + *
> + * "ABCDEFGHIJKLMNO"
> + *
> + * assuming those are UCS-2 codepoints, so lfn_size = 15*2 = 30,
> + * then we generate these LFN sequences:
> + *
> + * seq byte_offset s[13]
> + * 0x42 26 "NO "
> + * 0x01 0 "ABCDEFGHIJ...
2018 Oct 28
6
[PATCH nbdkit 0/4] Add floppy plugin.
Add nbdkit-floppy-plugin, “inspired” by qemu's VVFAT driver, but
without the ability to handle writes.
The implementation is pretty complete, supporting FAT32, LFNs, volume
labels, timestamps, etc, and it passes both ‘make check’ and ‘make
check-valgrind’.
Usage is simple; to serve the current directory:
$ nbdkit floppy .
Then using guestfish (or any NBD client):
$ guestfish --ro
2018 Oct 28
0
[PATCH nbdkit 4/4] Add floppy plugin.
...; 7) + (checksum >> 1) + lfn->short_base[j];
+ for (j = 0; j < 3; ++j)
+ checksum = ((checksum & 1) << 7) + (checksum >> 1) + lfn->short_ext[j];
+
+ /* LFN support.
+ *
+ * Iterate in reverse over the sequence numbers. If the filename is:
+ *
+ * "ABCDEFGHIJKLMNO"
+ *
+ * assuming those are UCS-2 codepoints, so lfn_size = 15*2 = 30,
+ * then we generate these LFN sequences:
+ *
+ * seq byte_offset s[13]
+ * 0x42 26 "NO "
+ * 0x01 0 "ABCDEFGHIJKLM"
+ */
+ for (seq = 1 +...