1

(4 replies, posted in General)

hello there axelent,

I'm having the same problem here...
If i found out something I'll let you know...

If anyone can help us I'd be gratefull...


Spider Injector

2

(1 replies, posted in General)

Thank you for the reply.
No, the column list is optional. I've got another similar statement without the column list and it executes fine.
Just to confirm the theory, I added the column list, but am still getting the same error.
Any other ideas?


Spider Injector

3

(2 replies, posted in General)

Lazarus is an IDE to create (graphical and console) applications with Free Pascal. Free Pascal is a (L)GPL'ed Pascal and Object Pascal compiler that runs on Windows, Linux, Mac OS X, FreeBSD and more.

Lazarus is the missing part of the puzzle that will allow you to develop programs for all of the above platforms in a Delphi like environment. The IDE is a RAD tool that includes a form designer.

Unlike Java's "write once, run anywhere" motto, Lazarus and Free Pascal strive for "write once, compile anywhere". Since the exact same compiler is available on all of the above platforms you don't need to do any recoding to produce identical products for different platforms.

Spider Injector

4

(1 replies, posted in Miscalleneous posts)

They've been posting the videos up at the autodesk area forums.
I've been using mudbox since the beta of the first release, and have long been looking forward to these performance enhancments. The other new features like the real time shaders and paint engine is icing, but this release of mudbox is certainly going to make zbrush 3 look weak.
I've only been using zbrush when I have to for a couple of features it has, but there will no longer be any reason to use it now.


Spider Injector

5

(1 replies, posted in Miscalleneous posts)

it's good advice. The only thing I would add is consider the command's ExecuteScalar method when retrieving a single value from the database. And if you do use the datareader, use the CommandBehavior.CloseConnection option and always immediately read the data and then close the datareader.

A comment about the TableAdapter. The .Net TableAdapter ultimately uses the Data Provider namespace's DataAdapter. Using the Fill method of the DataAdapter (for example, SqlDataAdapter) is equivalent to using the TableAdapter's Fill method.


Spider Injector