0

With Firebird, the databases can be edited quite comfortably via isql.

Now I have a database where in one field

VALCONTENT BLOB SUB_TYPE TEXT SEGMENT SIZE 80

contains a continuous text.

I would now like to write the content of a text file into it.

Pseudocode:

update foo set ValContent = <ContentFromFile "C:\MyFile.txt"> where KeyField=123

MySQL offers similar functionality with LOAD_FILE. How does this work with isql?

Mark Rotteveel
  • 100,966
  • 191
  • 140
  • 197
ralfiii
  • 584
  • 4
  • 13

1 Answers1

1

Firebird ISQL does not have an option to load blob-content from a file.

Mark Rotteveel
  • 100,966
  • 191
  • 140
  • 197