User Toto - Stack Overflowmost recent 30 from stackoverflow.com2009-12-06T23:08:28Zhttp://stackoverflow.com/feeds/user/26699http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1743527/visual-studio-datasource-definition-does-not-include-the-tables-schema0Visual Studio DataSource definition does not include the table's schemaToto2009-11-16T17:12:35Z2009-11-16T17:12:35Z
<p>I'm having the following problem and I want to know whether it is a Visual Studio bug or if I'm doing something wrong:</p>
<p>I'm using <strong>AdventureWorks</strong> database in <strong>SQL Server 2005</strong> and <strong>Visual Studio 2008</strong>.</p>
<p>When defining a new DataSource (to be used in a GridView) I select the <strong>Product</strong> table, defined in the <strong>Production</strong> schema, but the generated query does not includes the schema:</p>
<pre><code>SELECT [ProductID], [Name] FROM [Product]
</code></pre>
<p>Thus it fails. The correct query would be:</p>
<pre><code>SELECT [ProductID], [Name] FROM Production.[Product]
</code></pre>
<p>If I select a table in the <strong>dbo</strong> schema I have no problem.</p>
http://stackoverflow.com/questions/855037/is-there-any-jdbc-type-4-driver-for-db2-v60Is there any JDBC Type 4 driver for DB2 v6?Toto2009-05-12T21:47:08Z2009-09-08T09:00:09Z
<p>Does DB2 UDB v6 supports JDBC Type 4 drivers?</p>
<p>Where can I get that JDBC Type 4 driver?</p>
http://stackoverflow.com/questions/687018/how-to-use-oracle-jdbc-driver-fixedstring-property0How to use Oracle jdbc driver fixedString property?Toto2009-03-26T18:30:31Z2009-08-28T04:53:32Z
<p>Oracle pads values in char columns so if I insert "a" in a CHAR(2) column then I cannot get that record by comparing that column to "a", I should get it by comparing it to "a ". Right?</p>
<p>To solve this problem the Oracle jdbc driver has the property fixedString but I cannot make it work. (look for <em>fixedString</em> <a href="http://www.oracle.com/pls/db10g/db10g.show%5Ftoc?which=main&partno=b10979&maxlevel=2&section=&expand=26281" rel="nofollow">here</a>)</p>
<p>I'm using ojdbc14.jar driver for Oracle 10gR2 and accessing an Oracle 10gR2 database.</p>
<p>This is my code:</p>
<pre><code> try {
Properties props = new Properties();
props.put("user", "****");
props.put("password", "****");
props.put("fixedString", true);
Class.forName("oracle.jdbc.driver.OracleDriver");
String jdbcUrl = "jdbc:oracle:thin:@<host>:<port>:<sid>";
Connection connection = DriverManager.getConnection(jdbcUrl, props);
PreparedStatement ps = connection.prepareStatement(
"SELECT * FROM MY_TABLE WHERE MY_TABLE_ID = ?");
ps.setObject(1, "abc"); // (*)
// MY_TABLE_ID is CHAR(15)
ResultSet rs = ps.executeQuery();
while (rs.next())
{
System.out.print("data: ");
System.out.println(rs.getString("MY_TABLE_ID"));
}
rs.close();
ps.close();
connection.close();
} catch (SQLException ex) {
ex.printStackTrace();
} catch (ClassNotFoundException ex) {
ex.printStackTrace();
}
</code></pre>
<p>The above code executes fine (no exceptions thrown) but the ResultSet is empty after executeQuery().</p>
<p>If I change the line (*) for</p>
<pre><code>ps.setObject(1, "abc ");
</code></pre>
<p>Then I get the column I wanted. So it seems the driver is ignoring the fixedString option.</p>
<p>I've also tried changing the line (*) for</p>
<pre><code>ps.setObject(1, "abc", java.sql.Types.CHAR);
</code></pre>
<p>But the ResultSet I get is empty again. <strong>What am I missing?</strong></p>
<p>Thanks in advance</p>
http://stackoverflow.com/questions/610499/how-to-control-allowed-html-tags-in-wmd-editor1How to control allowed HTML tags in WMD Editor?Toto2009-03-04T13:15:29Z2009-08-24T19:10:35Z
<p>I am trying to some-how set the valid HTML tags and attributes users would be able to use in <a href="http://wmd-editor.com/" rel="nofollow">WMD Editor</a> in <a href="http://forumsr.gxopen.com" rel="nofollow">my site</a>. For example, I want to forbid the user to directly set the font size, color, typeface and so on, which is trivial to do with the default settings typing something like:</p>
<pre><code><span style="font-size: 45px; color:#FF0000">Some intrusive text here</span>.
</code></pre>
<p>I think the way to implement this is through the "wmd_options", but I have not found any documentation or reference regarding this, giving the fact that the 'Options demo' seems to be the only public documentation and it does not show how should I do what I have described above.</p>
<p>I've send this same question to support@attacklab.net but didn't get any reply. As stackoverflow uses this editor someone reading this or maybe <a href="http://stackoverflow.com/users/1/jeff-atwood">Jeff</a> knows the answer ;)</p>
<p>Thanks in advance!</p>
http://stackoverflow.com/questions/190006/any-good-online-c-reference-manual5Any good online C reference manual?Toto2008-10-10T03:21:36Z2009-07-15T00:58:48Z
<p>I've studied C programming in college some years ago and have developed some medium applications back then (nothing serious). Now I have to develop some more 'advanced' C applications (involving POSIX threads and RPC), but right now I'm a little rusty even with the basics.</p>
<p>Does anyone know of any good online C reference manual? This may help me get in tune faster.</p>
http://stackoverflow.com/questions/499879/problem-redirecting-a-c-program-output-in-bash0Problem redirecting a C program output in bashToto2009-02-01T00:27:55Z2009-07-08T12:35:19Z
<p>I've coded a program in C that sends messages to the stdout using printf and I'm having trouble redirecting the output to a file (running from bash). </p>
<p>I've tried:</p>
<pre><code>./program argument >> program.out
./program argument > program.out
./program >> program.out argument
./program > program.out argument
</code></pre>
<p>In each case, the file program.out is created but it remains empty. After the execution ends the file size is 0.</p>
<p>If I omit the redirection when executing the program:</p>
<pre><code>./program argument
</code></pre>
<p>Then, all messages sent to stdout using printf are shown in the terminal.</p>
<p>I have other C programs for which I've no problem redirecting the output this way.
Does it have to do with the program itself? with the argument passing?
Where should look for the problem?</p>
<p>Some details about the C program:</p>
<ul>
<li>It does not read anything from stdin</li>
<li>It uses BSD Internet Domain sockets</li>
<li>It uses POSIX threads</li>
<li>It assigns a special handler function for SIGINT signal using sigaction</li>
<li>It sends lots of newlines to stdout (for those of you thinking I should flush)</li>
</ul>
<p>Some code:</p>
<pre><code>int main(int argc, char** argv)
{
printf("Execution started\n");
do
{
/* lots of printf here */
} while (1);
/* Code never reached */
pthread_exit(EXIT_SUCCESS);
}
</code></pre>
http://stackoverflow.com/questions/215255/string-vs-string-in-c29String vs string in C#Toto2008-10-18T16:47:26Z2009-06-13T02:32:26Z
<p>In C# the string keyword (highlighted in Visual Studio as a data type) is just a shortcut to the String class right?</p>
<p>In that case, it would be the same to use either while coding from the semantic point of view. However, is it the same from the performance point of view? I mean, when the mapping is performed: during compilation (I guess so), during compilation or during JIT compilation in execution? </p>
<p>Or maybe this is all wrong: string and String are not the same thing in C# so there are some situations where they cannot be interchanged</p>
http://stackoverflow.com/questions/640700/what-coding-style-for-error-checking-is-better-and-why10What coding style for error checking is better and why?Toto2009-03-12T22:11:04Z2009-03-25T11:29:59Z
<p>What coding style for error checking is better and why?
(leave Exceptions away, imagine we do not have them)</p>
<pre><code>int foo()
{
int errCode = some_system_call();
if (errCode != OK)
{
return myErrCode;
}
// continue doing foo stuff
return myOK;
}
</code></pre>
<p>Or:</p>
<pre><code>int foo()
{
int returnCode = myOK;
int errCode = some_system_call();
if (errCode != sysOK)
{
returnCode = myErrCode;
}
else
{
// continue doing foo stuff
returnCode = myOK;
}
return returnCode;
}
</code></pre>
http://stackoverflow.com/questions/645268/in-com-should-i-call-addref-after-cocreateinstance6In COM: should I call AddRef after CoCreateInstance?Toto2009-03-14T03:17:44Z2009-03-14T03:41:53Z
<p>Does CoCreateInstance automatically calls AddRef on the interface I'm creating or should I call it manually afterwards?</p>
http://stackoverflow.com/questions/624329/how-to-read-an-xml-file-in-a-visual-c-application0How to read an XML file in a Visual C++ application?Toto2009-03-08T21:30:21Z2009-03-12T22:20:12Z
<p>How to read an XML file in a Visual C++ application?</p>
<p>I need to read an XML file in a Visual Studio 2003 C++ COM ATL application - unmanaged code. What library should I use: msxml, xmllite, other?</p>
<p>I need to check that the xml satisfies its xsd I've defined and then read it.</p>
<p>Sample code welcomed ;)</p>
<p>Thanks in advance.</p>
http://stackoverflow.com/questions/600302/how-to-work-around-object-required-error-when-adding-a-variable-in-an-atl-dialo0How to work-around "Object required" error when adding a variable in an ATL DialogToto2009-03-01T19:05:10Z2009-03-04T15:51:52Z
<p>I'm using Visual Studio .NET 2003 to develop a COM ATL application in unmanaged Visual C++.</p>
<p>I've created a ATL Dialag and whenever I try to add a variable for a control the wizard thorws the message "Object required".</p>
<p>I've tried the following alternatives:</p>
<ul>
<li>Right click in the control to call
"Add variable" from there: this way
the wizard does not thorws the
message but the variable is not
created.</li>
<li><a href="http://www.codeguru.com/forum/showthread.php?t=441693" rel="nofollow">This post</a>, but it is
for VS2005.</li>
</ul>
<p>Does anyone knows any work-around-around for this problem? Or what the wizard actually does so I can do it manually?</p>
http://stackoverflow.com/questions/596809/com-basic-sample0COM basic sampleToto2009-02-27T21:46:43Z2009-02-28T23:22:35Z
<p>I've been reading <a href="http://rads.stackoverflow.com/amzn/click/0201634465" rel="nofollow">Essential COM</a>, it is a very good book, very instructive and simple to understand. Now I want to speed things up and implement a simple COM object, compile it into a .dll and finally use it from a client application.</p>
<p>I would really appreciate if anybody could show the most basic sample of how to do that?</p>
<p>I've been trying with <a href="http://www.codeguru.com/cpp/com-tech/activex/tutorials/article.php/c5567" rel="nofollow">this step by step</a> but, besides founding some errors, I could not make it work. The reason for this is that I've created a simple Win32 application, I started coding the COM from scratch (as the step by step shows) and fails to compile/link (lot of errors), I must be forgetting some configuration or some includes in stdafx.h or whatever.</p>
<p>I'm working in Visual C++ with Microsoft Visual Studio .Net 2003</p>
<p>Thanks in advance!</p>
http://stackoverflow.com/questions/518193/how-do-i-use-ole-db-to-access-a-dbf-file-in-an-com-c-atl-application0How do I use OLE-DB to access a dbf file in an COM/C++ ATL application?Toto2009-02-05T22:08:32Z2009-02-05T23:16:38Z
<p>I need to access the data contained in a dbf file in COM/C++ application (created via ATL).
How would I do that?</p>
<p>I've been reading tons of msdn articles very instructive about the OLE-DB provider-consumer model. However, what I need now is a quick tutorial or code sample.</p>
<p>Note: I am by no means no expert in COM/ATL programming :)</p>
<p>Thanks in advande.</p>
http://stackoverflow.com/questions/518193/how-do-i-use-ole-db-to-access-a-dbf-file-in-an-com-c-atl-application/518427#5184270Answer by Toto for How do I use OLE-DB to access a dbf file in an COM/C++ ATL application?Toto2009-02-05T23:13:13Z2009-02-05T23:13:13Z<p>I found this old Tutorial in Code Project but it fits my needs by now.</p>
<p><a href="http://www.codeproject.com/KB/database/oledbconsumer1.aspx" rel="nofollow">http://www.codeproject.com/KB/database/oledbconsumer1.aspx</a></p>
<p>Thanks anyway!</p>
http://stackoverflow.com/questions/486075/passing-an-array-of-strings-as-parameter-to-a-function-in-c6Passing an array of strings as parameter to a function in CToto2009-01-28T01:06:34Z2009-01-29T18:20:30Z
<p>I want a simple function that receives a string and returns an array of strings after some parsing. So, this is my function signature:</p>
<pre><code>int parse(const char *foo, char **sep_foo, int *sep_foo_qty) {
int i;
char *token;
...
strcpy(sep_foo[i], token); /* sf here */
...
}
</code></pre>
<p>Then I call it like this:</p>
<pre><code>char sep_foo[MAX_QTY][MAX_STRING_LENGTH];
char foo[MAX_STRING_LENGTH];
int sep_foo_qty, error;
...
error = parse(foo, sep_foo, &sep_foo_qyt);
...
</code></pre>
<p>This way I get a warning during compilation:</p>
<pre><code>warning: passing argument 2 of 'parse' from incompatible pointer type
</code></pre>
<p>And then a segmentation fault during execution in the line marked with /* sf here */</p>
<p>What is wrong in my C code?</p>
<p>Thanks in advance</p>
http://stackoverflow.com/questions/467396/can-the-server-use-the-same-socket-to-send-the-response-to-the-client-how5Can the server use the same socket to send the response to the client? how?Toto2009-01-21T22:54:48Z2009-01-21T23:48:31Z
<p>I am using Berkeley sockets (both: Internet domain and Unix domain) and I was wondering if the server can use the same sockets for reading the request and writing a response to the client. Or should the client create an other socket to wait for the replay and the server connect to it after processing the message received.</p>
<p>By the way, I am talking about connection oriented sockets (stream sockets, TCP, ...).</p>
<p>This is the simplified server code (I ommit error checking on system calls here just for simplicity):</p>
<pre><code>int main() {
int server_socket, connected_socket;
struct sockaddr_in server_addr;
char buf[1024];
char aux[256];
int bytes_read;
server_socket = socket(AF_INET, SOCK_STREAM, 0);
server_addr.sin_family = AF_INET;
server_addr.sin_addr.s_addr = INADDR_ANY;
server_addr.sin_port = htons(1234);
bind(server_socket, &server_addr, sizeof(server_addr))
listen(server_socket, 5)
connected_sodket = accept(server_socket, 0, 0);
do {
bzero(buf, sizeof(buf));
bytes_read = read(connected_socket, buf, sizeof(buf));
} while (bytes_read > 0);
/* Here I want to use connected_socket to write the reply, can I? */
close(connected_socket);
close(server_socket);
return (EXIT_SUCCESS);
}
</code></pre>
<p>And this is the simplified client code (I ommit error checking on system calls here just for simplicity):</p>
<pre><code>int main() {
int client_socket;
struct sockaddr_in server_addr;
client_socket = socket(AF_INET, SOCK_STREAM, 0);
hp = gethostbyname("myhost");
server_addr.sin_family = AF_INET;
memcpy(&server_addr.sin_addr, hp->h_addr_list[0], hp->h_length);
server_addr.sin_port = htons(1234);
connect(client_socket, &server_addr, sizeof(server_addr));
write(client_socket, MSG, sizeof(MSG));
/* Here I want to wait for a response from the server using client_socket, can I? */
close(client_socket);
return (EXIT_SUCCESS);
}
</code></pre>
<p>Can I use <code>connected_socket</code> in the server and <code>client_socket</code> in the client to pass a response message back? Or should I use the client address I get in the server when in "accept" to connect to a socket in the client?</p>
<p>I have tried by using read/wrint in the client/server where the comment is shown but that way both programs keep blocked, it seems to be a dead-lock.</p>
<p>Thanks ins advance!
Regards.</p>
http://stackoverflow.com/questions/467396/can-the-server-use-the-same-socket-to-send-the-response-to-the-client-how/467459#4674591Answer by Toto for Can the server use the same socket to send the response to the client? how?Toto2009-01-21T23:14:52Z2009-01-21T23:14:52Z<p>Sorry; I did not say it but I did try it like this</p>
<p>This code in the server where the comment is:</p>
<pre><code>write(connected_socket, "Ok, I got it", sizeof("Ok, I got it"));
</code></pre>
<p>and this code in the client where the comment is:</p>
<pre><code>read(client_socket, buf, sizeof(buf));
</code></pre>
<p>Both programs keep blocked and when I kill the client, the server shows the messages it received (I have a printf just after the server calls <strong>read</strong>).</p>
<p>I try it with send and recv (both with 0 flags) instead of read and write and it did not change.</p>
http://stackoverflow.com/questions/205499/when-do-you-prefer-to-code2When do you prefer to code?Toto2008-10-15T16:52:29Z2008-10-23T15:15:05Z
<p>I personally prefer to code late at night. I don't know why but I feel more productive then. At first I thought it might be because of the silence but I usually code while listening to music or the radio.</p>
<p>What about you? Do you have any preference?</p>
http://stackoverflow.com/questions/205308/how-to-master-regular-expressions/205355#2053559Answer by Toto for How to master Regular Expressions?Toto2008-10-15T16:13:46Z2008-10-15T16:19:04Z<p>Tutorials:</p>
<p><a href="http://www.regular-expressions.info/tutorial.html" rel="nofollow">http://www.regular-expressions.info/tutorial.html</a> - One great tutorial on regex</p>
<p>Online Testers:</p>
<p><a href="http://osteele.com/tools/reanimator/" rel="nofollow">http://osteele.com/tools/reanimator/</a> - it animates your regex as an automaton, cool!</p>
<p><a href="http://regexpal.com/" rel="nofollow">http://regexpal.com/</a> - really cool and easy to use</p>
<p><a href="http://www.fileformat.info/tool/regex.htm" rel="nofollow">http://www.fileformat.info/tool/regex.htm</a></p>
<p>Tools:</p>
<p><a href="http://www.radsoftware.com.au/regexdesigner/" rel="nofollow">http://www.radsoftware.com.au/regexdesigner/</a></p>
<p>.Net specific:</p>
<p><a href="http://msdn.microsoft.com/en-us/library/az24scfc(VS.71).aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/az24scfc(VS.71).aspx</a></p>
<p>Java specific:</p>
<p><a href="http://java.sun.com/docs/books/tutorial/essential/regex/" rel="nofollow">http://java.sun.com/docs/books/tutorial/essential/regex/</a></p>
<p>GeneXus X specific:</p>
<p><a href="http://wiki.gxtechnical.com/commwiki/servlet/hwikibypageid?4606" rel="nofollow">http://wiki.gxtechnical.com/commwiki/servlet/hwikibypageid?4606</a></p>
http://stackoverflow.com/questions/189855/n-ary-trees-in-c0N-ary trees in CToto2008-10-10T01:52:09Z2008-10-10T16:30:06Z
<p>Which would be a neat implemenation of a N-ary tree in C language?</p>
<p>Particulary, I want to implement an n-ary tree, not self-ballancing, with an unbound number of children in each node, in which each node holds an already defined struct, like this for example:</p>
<pre><code>struct task {
char command[MAX_LENGTH];
int required_time;
};
</code></pre>
http://stackoverflow.com/questions/1670842/oracle-how-update-statement-worksComment by Toto on Oracle, how update statement worksToto2009-11-04T01:49:59Z2009-11-04T01:49:59ZNote: Question 1's text ended up mixed with the SQL code sample.http://stackoverflow.com/questions/792256/integrating-a-plug-in-into-moodleComment by Toto on integrating a plug-in into moodleToto2009-08-29T21:00:29Z2009-08-29T21:00:29Zsidsag, I'm having the same problem, did you find any solution?http://stackoverflow.com/questions/469695/decode-base64-data-in-java/469715#469715Comment by Toto on Decode Base64 data in javaToto2009-06-02T17:19:27Z2009-06-02T17:19:27ZYou can link the text 'Commons Codec' to the project page. That way this answer would be better than Kevin's :)http://stackoverflow.com/questions/687018/how-to-use-oracle-jdbc-driver-fixedstring-property/687032#687032Comment by Toto on How to use Oracle jdbc driver fixedString property?Toto2009-03-26T21:15:56Z2009-03-26T21:15:56ZThe question was about the fixedString property specifically.http://stackoverflow.com/questions/687018/how-to-use-oracle-jdbc-driver-fixedstring-property/687332#687332Comment by Toto on How to use Oracle jdbc driver fixedString property?Toto2009-03-26T21:11:38Z2009-03-26T21:11:38ZI've just added a reference for the fixedString property.http://stackoverflow.com/questions/687018/how-to-use-oracle-jdbc-driver-fixedstring-property/687032#687032Comment by Toto on How to use Oracle jdbc driver fixedString property?Toto2009-03-26T18:36:35Z2009-03-26T18:36:35ZThat was not the question. I cannot change the column definition, it is not up to me.http://stackoverflow.com/questions/640700/what-coding-style-for-error-checking-is-better-and-why/640742#640742Comment by Toto on What coding style for error checking is better and why?Toto2009-03-12T22:31:34Z2009-03-12T22:31:34ZNote that i edited the question so that the second option has only one exit point (the original question showed multiple exit point in both examples). Sorry about that.http://stackoverflow.com/questions/600302/how-to-work-around-object-required-error-when-adding-a-variable-in-an-atl-dialo/611181#611181Comment by Toto on How to work-around "Object required" error when adding a variable in an ATL DialogToto2009-03-04T21:13:14Z2009-03-04T21:13:14ZThanks! but unfortunately it is not my case. I've tried in Windows Vista and Windows XP. I've also tried restarting the IDE. Moreover, in my case the error arises in only one particular wizard.http://stackoverflow.com/questions/596809/com-basic-sample/597030#597030Comment by Toto on COM basic sampleToto2009-02-28T12:25:45Z2009-02-28T12:25:45ZThanks! Now I have my COM object compiled into a DLL and registered. Now I want to implement a client for that object (in a new visual studio project).
What files from the previous project do I need to include in this new project??http://stackoverflow.com/questions/499879/problem-redirecting-a-c-program-output-in-bash/499895#499895Comment by Toto on Problem redirecting a C program output in bashToto2009-02-01T01:34:15Z2009-02-01T01:34:15ZAny link with information about this different stdout-buffer behavior between sending it to the terminal and to a file?http://stackoverflow.com/questions/499879/problem-redirecting-a-c-program-output-in-bash/499895#499895Comment by Toto on Problem redirecting a C program output in bashToto2009-02-01T01:06:54Z2009-02-01T01:06:54ZWhat about when the program ends? Shouldn't stdout be automatically flushed then?http://stackoverflow.com/questions/499879/problem-redirecting-a-c-program-output-in-bash/499910#499910Comment by Toto on Problem redirecting a C program output in bashToto2009-02-01T00:49:33Z2009-02-01T00:49:33ZI could not reproduce it in a small program and the original program is to big to post it. I'll try to show some code anyway.http://stackoverflow.com/questions/499879/problem-redirecting-a-c-program-output-in-bashComment by Toto on Problem redirecting a C program output in bashToto2009-02-01T00:40:36Z2009-02-01T00:40:36ZI've edited the question to clarify that. Thankshttp://stackoverflow.com/questions/499879/problem-redirecting-a-c-program-output-in-bash/499901#499901Comment by Toto on Problem redirecting a C program output in bashToto2009-02-01T00:38:14Z2009-02-01T00:38:14Znope, is my home directry, and the same technique for other programs in redirecting to the same file works.http://stackoverflow.com/questions/499879/problem-redirecting-a-c-program-output-in-bash/499884#499884Comment by Toto on Problem redirecting a C program output in bashToto2009-02-01T00:34:54Z2009-02-01T00:34:54ZThe size of the files is 0. If I omit the redirection when calling the program I can see every printf output in the terminal.