SQL Date/Time Table Selection
Question: I have a database with a field set to Date/Time.My project has a variable that is of type Date.In a text box it displays 04/21/97. I cannot get the
Question: I have a database with a field set to Date/Time.My project has a variable that is of type Date.In a text box it displays 04/21/97. I cannot get the
Question: Is there a third-party tool (or a functionalitynative to PB) with which I can print the *entire*contents of a .PBL file, preferablyin a way that’s meaningful? I have in
Question: I must create a datawindow that has to get data from two databases. I connected to database “A” first and chose some fields from a table. Then I connected
Question: Is there a command Float.parseNumbers(s) that returns a float? Answer: Sure, parseInt(s) is simply: Integer temp = Integer.valueOf(s); int x = temp.intValue();which has an equivalent for floats Float temp
Question: I have a client who has been using Informix SQL version 2.10 on an Altos UNIX server for more than 10 years. He wants to move a 700 MB
Question: I have created a function that will retrieve the current date and time, and put it in the heading of all my reports. We store our reports as blobs
Question: My problem is that the SLE and Edit mask fields can be clicked and the cursor is active, even though: The window has a Tab object, and SLE and
Question: I am trying to truncate and then convert a float to a string. Something like atoi().Is this possible? Any suggestions? Answer: float f = 1.234;int i = f;strstream s;s
Question: What is the purpose of placing a const at the beginning and end of a function declaration with a de-reference to the function? Are there memory leak implications?For example: