Author |
Message |
Topic: data files from arclib examples not under trunk |
dhasenan
Replies: 1
Views: 12586
|
Forum: ArcLib Posted: Sat Jun 06, 2009 8:08 pm Subject: data files from arclib examples not under trunk |
Most examples in arclib/examples depend on some data files from the testbin directory. This is not in trunk.
The testbin directory is in the downloads directory of the SVN repository.
It took me ... |
Topic: DerelictSDLImage not loading |
dhasenan
Replies: 3
Views: 9560
|
Forum: Derelict Posted: Wed Apr 01, 2009 8:43 pm Subject: DerelictSDLImage not loading |
It was LD_LIBRARY_PATH, thanks. And then I got an error because I was trying to dynamically link a 64-bit .so to a 32-bit binary...guess I'll try LDC. |
Topic: DerelictSDLImage not loading |
dhasenan
Replies: 3
Views: 9560
|
Forum: Derelict Posted: Wed Apr 01, 2009 5:30 am Subject: DerelictSDLImage not loading |
Yes, those funky characters are what I'm seeing. I'm not sure how they could be corrupted, though; if I print them out right before calling DerelictSDLImage.load(), they look fine. So I'll try adding ... |
Topic: DerelictSDLImage not loading |
dhasenan
Replies: 3
Views: 9560
|
Forum: Derelict Posted: Sun Mar 29, 2009 8:51 pm Subject: DerelictSDLImage not loading |
Hi,
When I call DerelictSDLImage.load(), I get an exception saying that libSDL_image.so could not be found.
In point of fact, I get this exception message:
derelict.util.exception.SharedLibLo ... |
Topic: Using minid objects from D? |
dhasenan
Replies: 2
Views: 15933
|
Forum: MiniD Posted: Tue Mar 24, 2009 5:31 pm Subject: Using minid objects from D? |
Okay, that was as easy as I could have hoped, and in fact easier than I did hope. Thanks! |
Topic: Using minid objects from D? |
dhasenan
Replies: 2
Views: 15933
|
Forum: MiniD Posted: Tue Mar 24, 2009 11:10 am Subject: Using minid objects from D? |
In a game, I want minid objects to represent various entities. The bulk of the code is in D, so I want to deal with these minid objects as D objects.
The first thing that came to mind is, just use ... |
Topic: Avoid -I/usr/local/include/d? |
dhasenan
Replies: 0
Views: 10831
|
Forum: DSSS Posted: Tue Mar 17, 2009 9:40 am Subject: Avoid -I/usr/local/include/d? |
I'm trying to use both dmd2 and dmd1 with dsss. It seems, though, that rebuild forces you to import /usr/local/include/d/, and dsss installs everything to /usr/local/include/d.
How can I avoid this ... |
Topic: Project page is non-functional |
dhasenan
Replies: 0
Views: 10872
|
Forum: Sendero Posted: Sun Feb 22, 2009 4:57 pm Subject: Project page is non-functional |
The Git repository is working, but the project page is nonfunctional. The documentation and examples in the git repository are extremely scarce. Is there any chance that this will be fixed in the near ... |
Topic: mysql error 1153 |
dhasenan
Replies: 1
Views: 15278
|
Forum: DDBI Posted: Thu Jan 29, 2009 10:13 pm Subject: mysql error 1153 |
My maximum allowed packet size is 16MB (I just checked). Perhaps the error code is being reported incorrectly? |
Topic: mysql error 1153 |
dhasenan
Replies: 1
Views: 15278
|
Forum: DDBI Posted: Thu Jan 29, 2009 10:10 pm Subject: mysql error 1153 |
auto statement = db.prepare("INSERT INTO First (`text`, `date`) VALUES (?, ?)");
statement.paramTypes(DbiType.DateTime, DbiType.String);
statement.execute ... |
Topic: No bug tracker for ddbi? |
dhasenan
Replies: 2
Views: 18398
|
Forum: DDBI Posted: Thu Jan 29, 2009 9:49 pm Subject: No bug tracker for ddbi? |
I can't access ddbi's bug tracker. I can submit bugs, but I can't view them. Is this normal? |
Topic: Statement...the pain. |
dhasenan
Replies: 38
Views: 143296
|
Forum: DDBI Posted: Thu Jan 29, 2009 8:02 pm Subject: Statement...the pain. |
Oh! I finally understand Statement now!
Statement.execute executes a query. This query can return multiple rows, but you don't actually retrieve them in this step.
Statement.fetch retrieves a ro ... |
Topic: Statement...the pain. |
dhasenan
Replies: 38
Views: 143296
|
Forum: DDBI Posted: Thu Jan 29, 2009 5:57 pm Subject: Statement...the pain. |
That's not a "MultiResult" - this is just row by row fetching.
Okay. The fact remains that I don't see how to accomplish this in ddbi or in your fork. |
Topic: Statement...the pain. |
dhasenan
Replies: 38
Views: 143296
|
Forum: DDBI Posted: Thu Jan 29, 2009 5:41 pm Subject: Statement...the pain. |
Ok, I still need to be convinced that Database and Result should be decoupled.
A technical reason? I don't have one.
It's a matter of expectations. As an end user, I see a class named Database a ... |
Topic: Statement...the pain. |
dhasenan
Replies: 38
Views: 143296
|
Forum: DDBI Posted: Thu Jan 29, 2009 8:18 am Subject: Statement...the pain. |
Ok, with regards to prepared statements and multi-result sets, can you please mention a database that supports this feature?
You didn't quote me, so I assume you're talking about this:
It isn' ... |
|