Forum: ADO.NET |
Thema:
AW: AW: AW: AW: AW: PDF in Oracle DB |
Von:
Ralf Ziola (
20.09.2006 13:25) |
Hi,
ich hab das jetzt mal so probiert:
ofd.ShowDialog()
Dim imagesource As Image
imagesource = Image.FromFile(ofd.FileName)
Dim streamsource As New MemoryStream
imagesource.Save(streamsource, Imaging.ImageFormat.Bmp)
Dim bild = Convert.ToBase64String(streamsource.ToArray)
Dim strSQL As String = "insert into pdf (rec,name,dokument) values (1,'test','" & bild & "')"
If con.State = ConnectionState.Closed Then con.Open()
Dim cmd As New OleDbCommand(strSQL, con)
Try
cmd.ExecuteNonQuery()
Catch ex As Exception
MessageBox.Show(ex.Message & vbCrLf & ex.Source)
MessageBox.Show(bild)
End Try
If con.State = ConnectionState.Open Then con.Close()
Meine Tabelle (oracle) ist im moment so aufgebaut:
rec, varchar2, 10 <--- lfd nummer
name, varchar2, 50 <--- beschreibung
dokument, varchar2, 1024 <--- eigentliches Bild
Gruss
Ralf
Betreff |
Von |
Datum |
|
|
Ralf
Ziola
|
20.09.2006 13:29 |
|
|
Ralf
Ziola
|
29.09.2006 12:10 |
|
|
Antworten
Vorsicht bei der Eingabe: Die Zeichen ' oder -- sind nicht erlaubt!