Hello Thomas,
That method for removing a row did not work in the first version of
the gui.
Here is the new implementation:
private void removeLOB(){
try{
fileString = filename.getText();
pstmt = conn.prepareStatement("delete from LOBtable
where
filename = ?");
pstmt.setString(1, fileString);
pstmt.execute();
fb.append("\n>" + fileString + " removed...");
}catch(Exception ex){
fb.append("\n>Could not remove " + fileString + "...");
fb.append( ex.getMessage() );
}
}
If you are interested, I will be working on adding a radio button to
specify CLOBs vs. LOBs, making large variable sized files, and adding
buttons for timing in the feedback. I dunno, what do you think would
be productive in a beginners tool like this?
Cheers,
Michael
On Apr 22, 2:03 pm, Michael Bissell <[email protected]> wrote:
> Hello,
>
> Here is my H2 LOBs GUI for you. I suppose I will be adding to it in
> the near future and was placing it in "org.h2.samplse" folder. At what
> point should I try to patch?
>
> Some functionality I wanted to add:
>
> -Timing options
> -Create LOBs
>
> Thanks,
> Michael B.
>
> MyH2GUI.java
> 8KViewDownload
--
You received this message because you are subscribed to the Google Groups "H2
Database" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/h2-database?hl=en.