Tagged Questions
The data-type-conversion tag has no wiki summary.
10
votes
8answers
528 views
C# - How to intelligently & safely convert a Double to String?
Trying not to repeat myself (to be DRY) here, help me out. =)
I have a double which represents a rating / 5.
The possible values are:
0, 0.5, 1, 1.5, 2, 2.5, 3, 3.5, 4, 4.5, 5.
I want to convert ...
4
votes
1answer
45 views
Make MySQL not to convert string to number
I have a query in my application that selects users from a table by ID or by username:
SELECT * FROM users WHERE id = '$x' OR username = '$x'
This is working when given usernames like foo, bar123 ...
4
votes
8answers
278 views
What is the difference between long long and long int
I know the difference between long and int
But What is the difference between "long long" and "long int"
4
votes
5answers
199 views
Accepted practice for converting an Object to and from a String in Java?
What is the commonly accepted method for converting arbitrary objects to and from their String representations, assuming that the exact class of the object is known ? In other words, I need to ...
3
votes
4answers
64 views
Converting Datatypes in c#
Here are my C# classes:
public class myClass {
// Some properties irrelevant to the question
public List<someObject> ListOfStuff { get; set; }
}
public class someObject {
...
3
votes
5answers
275 views
What is the fastest way of converting an array of floats to string?
What is the fastest way of converting an array of floats into string in C#?
If my array contains this { 0.1, 1.1, 1.0, 0.2 }
Then I want each entry to converted to a string with value separated by a ...
2
votes
2answers
23 views
Importing Int into SQL Server 2008 R2 from Text File
I was trying to use the import wizard of SQL Server 2008 to import data I have exported from another SQL Server database saved to a text file. The wizard tried to import the data as varchar, and when ...
2
votes
3answers
184 views
What is the least verbose way to convert a Double to Data.Text?
How do I convert a Double to Data.Text?
In essence, I had the following code:
Data.Text.pack $ show 9.0
That code has some rather obvious silliness. So I dug around in the documentation and came ...
1
vote
3answers
40 views
SQL Server to .Net type conversions
I have the following map that I use to convert betwen SQL Server types, SQLData types, and .NET types:
/// <summary>
/// The map of types. THis maps all the corresponding types between sql ...
1
vote
2answers
79 views
Migrating to VB.NET: what datatype to use for “hcontext” in an x64 project?
I have a old VB6 project.Now I migrating it in VB.Net on vs2008 and the solution platform now I have to use 64bit.In the old code the variable hContext was declared as Integer.
Dim hContext As ...
1
vote
1answer
75 views
Change jquery mobile data-type (between horizontal and vertical)
May I know if i can change the data-type='horizontal' of the controlgroup data-role into data-type="vertical" while my orientation of my ipad is changed??
Is it something due with $("div").attr() or ...
1
vote
3answers
39 views
Method receive List of more data types as parameter
I have a method and as a parameter I send List.
The method looks like this:
public static void setSanctionTypes(List<QueueSueDTO> items) {
for (QueueSueDTO dto : items) {
...
1
vote
1answer
62 views
Lazarus error - how to store result of integer in textbox?
I'm trying out a very simple program in LAZARUS to multiply two text box values and store the result in a third one. This line is what I'm using.
txtA.Text = IntToStr( StrToInt(txtA.Text ) + ...
1
vote
1answer
70 views
How do i add a column with an auto-incremental name to a MySql table?
I'm using VB.net to write a MYSQL application and one feature i need to add is the ability to add a column for each week that my employees worked. for example i want the first column to be called "W1" ...
1
vote
1answer
229 views
Converting varchar to int using phpmyadmin
ok.. Im a complete noob at SQL and having trouble... Im trying to convert a table from varchar to int.. The reason for this is because Im trying to order the numbers on my website by the highest ...
0
votes
3answers
28 views
converting long to integer without losing the original value
Is there a way to convert a long value 8769402740 to integer and still maintain the original value . I know about using
(int) long
however it changes the appearance of the number and that ...
0
votes
1answer
7 views
custom datatype - date and time
I've been looking all over how to built your own custom datetime datatype.
I need it to be in this format : dd/mm/yyyy hh:mm
can you help me ?
Thank's
0
votes
0answers
29 views
Data type discovery libraries in Java
I'm looking for a java library to handle data type dicovery. Basically, determining the data type of the information contained in a string.
I know I could write nested if/else statements with java ...
0
votes
0answers
27 views
String to JSon Datatype
I send a parameter from code behind with aspxCallBack;
C#
protected void ASPxCallback1_Callback(object source, DevExpress.Web.ASPxCallback.CallbackEventArgs e)
{
string r = "";
.
bla..
...
0
votes
0answers
45 views
mysql float data type round off's values after 6 decimal places
I have a table (say table1) with one field of data type float (say field1). The values in this field are all unique with upto 8 decimal places.
I executed following queries on this table:
SELECT ...
0
votes
0answers
55 views
Mapping between C# and unmanaged C types
I have a project in which I need to use some C# code and export it as unmanaged C (in a C dll)
I managed to do it and it works ok (I can declare the DLL functions in a client C console app and use the ...
0
votes
0answers
41 views
how to convert varbinary datatype and inserting into datatable
In my database i have a column with the datatype varbinary(MAX). I i'm trying to pass it into a datatable but get stuck on typeconversion.
private DataTable getData(int id)
{
...
0
votes
5answers
52 views
decimal to long - always missing a dot separator
I want to be able to convert a
varchar > decimal > long
when dbreader[11] holds a 3319419,13 as varchar
For example:
decimal d = Convert.ToDecimal(dbreader[11], ...
0
votes
1answer
12 views
Datatype finding in C#
I have 10 data's in string array.In this 10 data, each of the data's could be integer/string/double/DateTime format. based on these 10 datatype we have to find common datatype.
Eg1: ...
0
votes
2answers
118 views
Error in using the BSTR data type
My firebreath plugin project has a wrapper class of an active X control.
One of the method takes a BSTR data type variable as input, but when I try to call the method and pass a BSTR, i get an error.
...
0
votes
2answers
42 views
MySQL datatype for URL's [closed]
Possible Duplicate:
Best database field type for a URL
I am in the middle of transferring my access into mysql. My url's were datatype Anchor in the access database and I was wondering what ...
0
votes
4answers
105 views
how to cast System.String to System.Web.UI.WebControls.CheckBox in asp.net?
I'm new to the asp.net, I want to cast System.String to System.Web.UI.WebControls.CheckBox in asp.net?
I'm developing one shopping web site. In that i'm having some checkbox controls. And I want t0o ...
0
votes
1answer
64 views
Wijmo charts - passing in dates from PHP
I'm using Wijmo, a jQuery library that includes a few chart plugins. When working with dates, data is specified using the following format:
seriesList: [{
label: "Q1",
legendEntry: true,
...
0
votes
1answer
77 views
DataType between different process and architectures - Writing a correct DllImport
I have a main application written in C# that runs as a x64 bit application, it communicates through dll import with a standard native unmanaged C/C++ dll of which I have also the header.
I need help ...
0
votes
1answer
87 views
Mechanism to call functions with different number and type of parameters?
I have a set of functions to be called
e.g.:
void void_func(); /* id = 0 */
void void_func1(int); /* id = 1 */
void void_func2(int, char *); /* id = 2 */
void ...
0
votes
2answers
133 views
How can I get the cube root in F#
I tried to get the cube root in F#. But here is my problem.
let x5 = ((float 64) ** (1.0/3.0));;
val x5 : float = 4.0
int x5;; //expected 4
val it : int = 3
The result should be 4, not 3.
What's ...
0
votes
2answers
75 views
Convert to a datatype given in string format
I have been searching for a solution for quite a while now and couldn't find anything close.
What I want to achieve:
I have two strings, 'a' and 'b'. String 'a' contains a datatype, for example ...
0
votes
2answers
68 views
Emulating int64 overflows in Ruby
Im a long time programmer but new to Ruby. I'm trying to port an algorithm called CheckRevision used for checking integrity of game files before loggin into Battle.net's online gaming service.
The ...
0
votes
2answers
95 views
How to assign a float to a int64_t
To upload a score to the game center, they require you to have a value which is of type int64_t.
Is there a way to simply convert my float to int64_t?
I have built my whole game around the score ...
0
votes
1answer
47 views
VB Type setting for a SHA512 hash
I have the following function for generating sha512 hashs. The hash is generated successfully, but is causing this error when the resulting string is passed to other functions:
Input string was ...
0
votes
1answer
256 views
How to convert Number Datatype to Text Datatype - ODBC Query - C#
I am developing a Windows Forms Application in C# with 2.0 being the underlying .Net Framework. I use .Net Framework Data Provider for ODBC in order to connect to a specific access database.
I have ...
0
votes
4answers
2k views
Conversion: uid_t to string, off_t to string
I am currently writing a systems programming homework and in one part i need to get some information of a file in a directory.
for the stat of file, we have ctime() function which converts time_t ...