New answers tagged data-conversion
0
First of all its really a bad query and quite hacky, you shouldn't be writing query like this
string sql = "insert into Usertable ";
sql += "values(" + mVendid + ", '" + usrname + "','" + usrpass + "', cast('" +
datecreation + "'as DATETIME),'" + createdby + "')";
*Always use Paramaterised Queries *
Error might be there because you are converting some ...
0
First of all user parameters (better, clearer and safer!). Second this error happens due to format issues.
datecreation = todaydate.Substring(6, 4) + todaydate.Substring(3, 2) +
todaydate.Substring(0, 2)
string date = DateTime.Parse(datecreation);
string sql = "insert into Usertable values(@mvendid, @username, @usrpass, @date, ...
0
The problem is that probably you server has different language settings that your machine.
To make sure that converting is working you Convert function. Full tutorial is here: http://www.sqlusa.com/bestpractices/datetimeconversion/
BTW constructing queries like concatenate string is very dangerous way. Instead of this use SqlParamerts. Moreover advantage ...
2
Never concatenate string to form SQL queries, always use parameterized query. For your code you can use SqlParameter, with your command. There instead of Converting DateTime to string and then casting it back DateTime in INSERT query , simply add the value of DateTime object in parameter. This will not only save you from Sql Injection but also resolves ...
0
Check the time zone of the server. Likely that it is a different time zone to your local machine. You can avoid the issue by using parameters.
string sql = @"
INSERT INTO Usertable
VALUES (@Parameter1, @Parameter2, @Parameter3, @Parameter4, @Parameter5)";
(using SqlCommand command = new SqlCommand(sql, myConnection))
{
...
0
Try this:
arr <- simplify2array(dataA_split[1:2])
fit <- lm(arr~x3)
3
std::to_wstring is simpler, but to point out the problem in your code, you never created a buffer. LPWSTR ret = L""; makes ret a pointer to an array held in static memory. This array cannot be modified.
Here is one way to fix the code by using std::wstring as the buffer:
std::wstring IntToWstring(int value)
{
std::ostringstream convert;
...
0
You don't need to go to a lot of effort to convert an int into a const wchar_t *. Since C++11, you can take a two-step approach to a std::wstring and a const wchar_t * from there:
SetDlgItemText(hDlg, IDC_TILE_WIDTH_LBL, std::to_wstring(mapToEdit->TileWidth()).c_str());
Sure you could put that into a function to make it one step, but keep in mind that ...
0
isize = floor((ymax - ymin) / 0.5) + 1;
jsize = floor((xmax - xmin) / 0.5) + 1
M=zeros(isize, jsize);
Then for each input line:
i = floor((y - ymin) / 0.5) + 1;
j = floor((x - xmin) / 0.5) + 1;
M(i, j) = z;
1
If you do not intend to use these integers for calculation, can you just pass to your Javascript as Strings and treat them as Strings in your JS code?
Instead of generating an array of numbers ([6918384653328004118 , 9016587993063058147]), change your JSP so it wraps your numbers in quotes (["6918384653328004118" , "9016587993063058147"]). Javascript ...
0
My data migration and transformation library - Data Pipeline - can also help here.
This option streams records from CSV to XML using FreeMarker templates so your memory overhead will stay low even when dealing with gigabytes of data.
Let's say you have this CSV as input.
stageName, realName, gender, city, balance
John Wayne, Marion Robert Morrison, ...
1
If the table already exists, the syntax is:
insert into TargetTable
(field1, field2, etc)
select field1, field2, etc
from OtherTables
where whatever
2
You can use select ... into to create a new table from a select statement:
select orig.Id
, orig.Timestamp
, fk1.Id
, fk2.id
into NewTable
from OldTable orig
join ForeignKey1 fk1
on fk1.value = orig.varchar_1
join ForeignKey2 fk2
on fk2.value = orig.varchar_2
alter table NewTable add constraint ...
2
Note that if X is at all large, then starting from sqrt(X) and working downwards one step at a time will be a miserable task. This may take a huge amount of time.
If you can find the factors of the number however, then simply compute all divisors of X that are less than sqrt(X).
Consider the number X = 123456789012345678901234567890. The smallest integer ...
0
One alternative is to set up this optimization problem
Minimize the difference of the factors X and Y
the difference of the product X × Y and P. You have thus an objective function that is weighted some of two objective:
min c × |X × Y - P| + d × |X – Y|
subject to X, Y ∈ ℤ
X, Y ≥ 0
where c, d are non-negative numbers that define ...
0
A perfect square would have a side of SQRT(X) so start from there and work downward.
int X = ...
for(int i=sqrt(x);i>0;i--) {
// integer division discarding remainder:
int j = X/i;
if( j*i == X ) {
// closest pair is (i,j)
return (i,j);
}
}
return NULL;
Note this will only work if X is actually divisible by two integers (ie a prime X ...
0
There's probably a better algorithm for this, but off the top of my head:
1) Take the square root of the number X; we'll call it N.
2) Set N equal to the ceiling of N (round up to the nearest integer).
3) Test for (X % N). If N divides evenly into X, we found our first number.
if 0, divide X by N to get M. M and N are our numbers
if not 0, increment N ...
Top 50 recent answers are included