DataStax Cassandra C# .net core Insert date Exception
up vote
0
down vote
favorite
I am trying to do prepared insert via datastax c# cassandra driver and I am getting the following exception:
Cassandra.ServerErrorException: 'java.lang.NoClassDefFoundError: org/joda/time/ReadablePartial'
While trying to insert DateTime.Now
var prep = session.Prepare("Insert Into mytable (topic, post) Values (?, ?)");
var batch = new BatchStatement()
.Add(prep.Bind("test", DateTime.Now));
session.Execute(batch);
Any ideas?
Thanks
asp.net cassandra datastax core
add a comment |
up vote
0
down vote
favorite
I am trying to do prepared insert via datastax c# cassandra driver and I am getting the following exception:
Cassandra.ServerErrorException: 'java.lang.NoClassDefFoundError: org/joda/time/ReadablePartial'
While trying to insert DateTime.Now
var prep = session.Prepare("Insert Into mytable (topic, post) Values (?, ?)");
var batch = new BatchStatement()
.Add(prep.Bind("test", DateTime.Now));
session.Execute(batch);
Any ideas?
Thanks
asp.net cassandra datastax core
add a comment |
up vote
0
down vote
favorite
up vote
0
down vote
favorite
I am trying to do prepared insert via datastax c# cassandra driver and I am getting the following exception:
Cassandra.ServerErrorException: 'java.lang.NoClassDefFoundError: org/joda/time/ReadablePartial'
While trying to insert DateTime.Now
var prep = session.Prepare("Insert Into mytable (topic, post) Values (?, ?)");
var batch = new BatchStatement()
.Add(prep.Bind("test", DateTime.Now));
session.Execute(batch);
Any ideas?
Thanks
asp.net cassandra datastax core
I am trying to do prepared insert via datastax c# cassandra driver and I am getting the following exception:
Cassandra.ServerErrorException: 'java.lang.NoClassDefFoundError: org/joda/time/ReadablePartial'
While trying to insert DateTime.Now
var prep = session.Prepare("Insert Into mytable (topic, post) Values (?, ?)");
var batch = new BatchStatement()
.Add(prep.Bind("test", DateTime.Now));
session.Execute(batch);
Any ideas?
Thanks
asp.net cassandra datastax core
asp.net cassandra datastax core
asked Nov 18 at 2:59
Stoyan Bukovich
11
11
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
up vote
0
down vote
You need to check your Cassandra setup - does it have the joda-time-<version>.jar
file in the lib
folder? It looks like it's missing, or you have 2 version of it (for example, left from the upgrade, etc. in this case remove all joda-time
jars, and re-install libraries matching to your Cassandra version).
add a comment |
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
0
down vote
You need to check your Cassandra setup - does it have the joda-time-<version>.jar
file in the lib
folder? It looks like it's missing, or you have 2 version of it (for example, left from the upgrade, etc. in this case remove all joda-time
jars, and re-install libraries matching to your Cassandra version).
add a comment |
up vote
0
down vote
You need to check your Cassandra setup - does it have the joda-time-<version>.jar
file in the lib
folder? It looks like it's missing, or you have 2 version of it (for example, left from the upgrade, etc. in this case remove all joda-time
jars, and re-install libraries matching to your Cassandra version).
add a comment |
up vote
0
down vote
up vote
0
down vote
You need to check your Cassandra setup - does it have the joda-time-<version>.jar
file in the lib
folder? It looks like it's missing, or you have 2 version of it (for example, left from the upgrade, etc. in this case remove all joda-time
jars, and re-install libraries matching to your Cassandra version).
You need to check your Cassandra setup - does it have the joda-time-<version>.jar
file in the lib
folder? It looks like it's missing, or you have 2 version of it (for example, left from the upgrade, etc. in this case remove all joda-time
jars, and re-install libraries matching to your Cassandra version).
answered Nov 19 at 10:21
Alex Ott
26.4k34871
26.4k34871
add a comment |
add a comment |
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53357497%2fdatastax-cassandra-c-sharp-net-core-insert-date-exception%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown